Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"leximo": {
"env": {
"LEXIMO_API_TOKEN": "your-token"
},
"args": [
"-y",
"leximo-ai-call-assistant-mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server that lets you schedule AI phone calls and manage Leximo assignments directly from Claude Desktop or Claude Code — no app switching needed.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'leximo-ai-call-assistant-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked leximo-ai-call-assistant-mcp-server against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication / productivity
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
mini cli search engine for your docs, knowledge bases, meeting notes, whatever. Tracking current sota approaches while being all local
MCP Security Weekly
Get CVE alerts and security updates for Leximo Ai Call Assistant MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server that lets you schedule AI phone calls and manage Leximo assignments directly from Claude Desktop or Claude Code — no app switching needed.
claude mcp add leximo -e LEXIMO_API_TOKEN=your-token -- npx -y leximo-ai-call-assistant-mcp-server
Replace your-token with your API token from concierge.leximo.ai/profile.
/plugin marketplace add leximo-ai/leximo-ai-call-assistant-mcp-server
Then install the plugin:
/plugin install leximo-ai-call-assistant
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"leximo": {
"command": "npx",
"args": ["-y", "leximo-ai-call-assistant-mcp-server"],
"env": {
"LEXIMO_API_TOKEN": "your-token"
}
}
}
}
Add to your Claude Code MCP settings:
{
"mcpServers": {
"leximo": {
"command": "npx",
"args": ["-y", "leximo-ai-call-assistant-mcp-server"],
"env": {
"LEXIMO_API_TOKEN": "your-token"
}
}
}
}
| Tool | Description |
|---|---|
get_profile | Get your user profile and account details |
get_credits | Check credit balance, usage history, and subscription summary |
get_subscription | View active subscription details |
get_plans | List available subscription plans with pricing |
create_checkout_session | Get a checkout URL to subscribe to a plan |
list_agents | List available AI calling agents |
get_agent | Get details of a specific agent |
list_assignments | List all your assignments (paginated) |
get_assignment | View a specific assignment with results and transcript |
create_assignment | Create a new phone call assignment |
delete_assignment | Delete an assignment |
get_assignment_proposals | Get AI suggestions to improve your task description |
list_notifications | Get call completion events and notifications |
Once configured, ask Claude things like:
npm install
npm run build # Compile TypeScript
npm start # Run compiled server
npm run dev # Run with tsx (hot re
... [View full README on GitHub](https://github.com/Leximo-AI/leximo-ai-call-assistant-mcp-server#readme)