Salesdrive Api — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Salesdrive Api (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
TypeScript client and MCP server for SalesDrive CRM API.
| Package | Description | NPM |
|---|---|---|
| @dannychirkov/salesdrive-api-client | TypeScript API client | |
| @dannychirkov/salesdrive-transport-fetch | Fetch-based HTTP transport | |
| @dannychirkov/salesdrive-mcp-server | MCP server for AI assistants |
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);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:
| 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 | ✅ | ✅ |
# Install dependencies
npm install
# Build all packages
npm run build --workspaces
# Run tests
npm test --workspaces
# Type check
npm run type-check --workspacesDanny Chirkov (@dannychirkov)
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.