SalesDrive MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@SalesDrive MCP ServerShow me the last 10 orders"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
SalesDrive API
TypeScript client and MCP server for SalesDrive CRM API.
Packages
Package | Description | NPM |
TypeScript API client | ||
Fetch-based HTTP transport | ||
MCP server for AI assistants |
Related MCP server: mcp-server-salesforce
Quick Start
Using the API Client
npm install @dannychirkov/salesdrive-api-client @dannychirkov/salesdrive-transport-fetchimport { createClient, orderService, referenceService } from '@dannychirkov/salesdrive-api-client';
import { createFetchTransport } from '@dannychirkov/salesdrive-transport-fetch';
// Create transport
const transport = createFetchTransport({
apiKey: 'your-api-key',
baseUrl: 'https://your-account.salesdrive.me',
});
// Create client with services
const client = createClient({
transport,
apiKey: 'your-api-key',
baseUrl: 'https://your-account.salesdrive.me',
})
.extend(orderService)
.extend(referenceService);
// Use the client
const orders = await client.orders.list({ limit: 10 });
console.log(orders.data);
const statuses = await client.reference.getStatuses();
console.log(statuses.data);Using with Claude (MCP Server)
Add to your Claude Desktop configuration (~/.config/claude/mcp.json or equivalent):
{
"mcpServers": {
"salesdrive": {
"command": "npx",
"args": ["-y", "@dannychirkov/salesdrive-mcp-server"],
"env": {
"SALESDRIVE_API_KEY": "your-api-key",
"SALESDRIVE_BASE_URL": "https://your-account.salesdrive.me"
}
}
}
}Now you can ask Claude:
"Show me the last 10 orders"
"Create a new order for customer John Doe"
"What payment methods are available?"
"Update order #123 status to completed"
Features
Full TypeScript Support - Complete type definitions for all API endpoints
Plugin Architecture - Only import the services you need
Transport Agnostic - Use fetch, axios, or your own HTTP client
MCP Integration - Ready-to-use server for AI assistants
Rate Limit Handling - Built-in retry logic for rate limits
API Coverage
Feature | Client | MCP |
Orders (create, update, list) | ✅ | ✅ |
Products (update, delete) | ✅ | ✅ |
Categories (update, delete) | ✅ | ✅ |
Payments (add, list) | ✅ | ✅ |
Payment Methods | ✅ | ✅ |
Delivery Methods | ✅ | ✅ |
Order Statuses | ✅ | ✅ |
Currency Rates | ✅ | ✅ |
Invoices | ✅ | ✅ |
Sales Invoices | ✅ | ✅ |
Cash Orders | ✅ | ✅ |
Contracts | ✅ | ✅ |
Checks (Fiscal) | ✅ | ✅ |
Acts | ✅ | ✅ |
Product Arrivals | ✅ | ✅ |
Development
# Install dependencies
npm install
# Build all packages
npm run build --workspaces
# Run tests
npm test --workspaces
# Type check
npm run type-check --workspacesLicense
Author
Danny Chirkov (@dannychirkov)
This server cannot be deployed
Maintenance
Related MCP Connectors
Operate Obriym CRM from your AI assistant: leads, deals, orders, catalog, stock, marketplaces.
Connect AI assistants to Nimble CRM to access and work with customer relationship data.
- PlixanaOAuthcom.plixana
Operate the Plixana CRM from any AI: contacts, deals, quotes, WhatsApp and metrics.
Enable AI assistants to interact seamlessly with Feeef e-commerce stores, products, and orders usi…
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with the Pipedrive CRM to manage deals, contacts, organizations, and activities. It features automatic custom field synchronization and guided onboarding to ensure assistants follow specific business rules and pipelines.37 npmMIT
- FlicenseBqualityDmaintenanceProvides AI agents with secure access to Salesforce data and operations, enabling natural language interaction with CRM for sales, marketing, and executive teams.65-
- AlicenseNot gradedqualityDmaintenanceEnables natural language customer and sales management by connecting AI assistants directly to CapsuleCRM, allowing users to search, create, and update CRM data via plain English commands.2MIT
- AlicenseNot gradedqualityCmaintenanceIntegrates RetailCRM API with AI assistants, enabling access to orders, customers, and products from your CRM through natural language commands.1MIT