MCP servers for every integration. Demo data sandbox. Natural language queries. Build automotive tools faster than ever with AI at the core.
Model Context Protocol servers for all our data sources. Connect your AI tools directly to dealer data with natural language.
// Connect to Carfluence MCP server
import { MCPClient } from '@carfluence/mcp-sdk';
const client = new MCPClient({
server: 'inventory-mcp.carfluence.com',
apiKey: process.env.CARFLUENCE_API_KEY
});
// Natural language query
const vehicles = await client.query(
"Find all Toyota Camrys under $30k with less than 50k miles"
);
// Structured response
console.log(vehicles);
// [{ vin: "4T1B11HK...", price: 28500, mileage: 32400 }, ...]Experiment with real integrations using demo data. Write queries in plain English. See results instantly.
// App: Competitor New Inventory Alert
// Generated by Carfluence AI
import { CarfluenceSDK } from '@carfluence/sdk';
import { Scheduler, Alert } from '@carfluence/tools';
const app = new CarfluenceSDK({
name: 'Competitor Inventory Monitor',
triggers: ['schedule:hourly'],
});
app.onTrigger(async (ctx) => {
// Get my inventory makes/models
const myInventory = await ctx.inventory.list({
groupBy: ['make', 'model']
});
// Check competitor inventory for matches
const competitorVehicles = await ctx.competitors
.checkNewInventory({
matchAgainst: myInventory,
addedWithin: '1h'
});
if (competitorVehicles.length > 0) {
await ctx.alert.send({
channel: 'slack',
message: `🚨 ${competitorVehicles.length} new
competitor vehicles match your inventory`
});
}
});
export default app;Pre-built n8n workflows for dealer automation. Download, customize, share. Some are free, some are premium. All connect to Carfluence APIs.
Alert me when we haven't responded to a customer email in over 5 hours
Automatically respond to positive reviews with AI-generated personalized messages
Alert me when new scripts are installed on my site (security monitoring)
Notify me when a competitor drops price on matching inventory
Auto-create follow-up task when lead hasn't been contacted in 24 hours
Alert when website form submission isn't in CRM within 5 minutes
We're open-sourcing our integrations, connectors, and automation templates. Contribute, customize, and build on our work.
carfluence/n8n-nodesn8n nodes for all Carfluence integrations
carfluence/mcp-sdkSDK for connecting to Carfluence MCP servers
carfluence/auto-connectorsOpen source CRM, DMS, and inventory connectors
carfluence/workflow-templatesReady-to-use n8n workflow templates
We welcome contributions from the community. Build a connector, create a workflow, or improve our documentation.
View on GitHubDeploy AI agents that monitor, analyze, and act on your behalf. They learn your business and get smarter over time.
Upload your ads and landing pages - get instant compliance checking. Our AI has a massive database of OEM requirements and knows exactly what each manufacturer allows. The knowledge base keeps growing with every check.
Monitors market pricing 24/7 and suggests optimal prices for your inventory.
AI ranks every lead based on likelihood to buy, so your team focuses on hot prospects.
Watches your lot for vehicles at risk of aging out and suggests action plans.
Drafts personalized responses to reviews across all platforms for your approval.
Get access to our MCP servers, n8n workflows, and AI playground. Start building smarter automotive tools today.