
Leximo Ai Call Assistant Mcp Server
- 2 repo stars
- Updated February 18, 2026
- Leximo-AI/leximo-ai-call-assistant-mcp-server
Leximo AI Call Assistant MCP is an MCP server that schedules AI phone calls, manages assignments, and checks Leximo credits from Claude.
About
Leximo AI Call Assistant MCP is a stdio Model Context Protocol server that wires Claude to Leximo’s AI phone concierge: schedule calls, manage assignments, and inspect credits without opening a separate dashboard. founders doing sales, onboarding, or support by phone can delegate planning to the agent while Leximo handles voice execution on their platform. Configuration needs a secret LEXIMO_API_TOKEN from concierge.leximo.ai/profile, which keeps the integration explicit and billed per Leximo’s credit model. Use it in the grow phase when you are scaling human-touch outreach but want agent-assisted scheduling and assignment hygiene. It is a narrow telephony integration—not a full CRM—best paired with a clear call playbook. Intermediate complexity reflects API token setup and understanding Leximo assignments versus generic calendar blocks.
- npm package leximo-ai-call-assistant-mcp-server v1.0.1 with stdio MCP
- Schedule AI phone calls and manage assignments from the agent
- Check Leximo credits before running campaigns
- Requires LEXIMO_API_TOKEN from concierge.leximo.ai/profile
Leximo Ai Call Assistant Mcp Server by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude mcp add --env LEXIMO_API_TOKEN=YOUR_LEXIMO_API_TOKEN leximo-ai-call-assistant-mcp-server -- npx -y leximo-ai-call-assistant-mcp-serverAdd your badge
Show developers this MCP server is listed on Skillselion. Paste this into your README.
| repo stars | ★ 2 |
|---|---|
| Package | leximo-ai-call-assistant-mcp-server |
| Transport | STDIO |
| Auth | Required |
| Last updated | February 18, 2026 |
| Repository | Leximo-AI/leximo-ai-call-assistant-mcp-server ↗ |
What it does
Schedule Leximo AI phone calls, manage call assignments, and check credit balance from Claude via API token.
Who is it for?
Best when you use Leximo for AI voice outreach and want MCP-driven scheduling and credit checks inside Claude Code.
Skip if: Developers without Leximo accounts, teams avoiding phone channels, or anyone needing in-app chat support instead of telephony.
What you get
After adding your LEXIMO_API_TOKEN and registering the server, Claude can schedule calls, adjust assignments, and surface credit status via MCP tools.
- MCP tools to schedule and assign Leximo AI calls
- Credit balance visibility inside agent sessions
- Stdio MCP server entry in agent configuration
By the numbers
- Version 1.0.1
- npm registryType with required secret env LEXIMO_API_TOKEN
- Stdio transport
README.md
Leximo AI Call Assistant — MCP Server
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.
Quick Install
Claude Code (one command)
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.
Claude Code (plugin marketplace)
/plugin marketplace add leximo-ai/leximo-ai-call-assistant-mcp-server
Then install the plugin:
/plugin install leximo-ai-call-assistant
Manual Setup
1. Get your API token
- Go to concierge.leximo.ai and sign in
- Open your profile page
- Copy your JWT access token
2. Configure Claude Desktop
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"
}
}
}
}
3. Configure Claude Code (manual)
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"
}
}
}
}
Features
- Assignments — Create, list, view, and delete AI phone call assignments
- AI Agents — Browse available calling agents and pick the right one
- Task Proposals — Get AI-generated improvements for your call instructions
- Credits — Check your credit balance and usage history
- Subscriptions — View your plan, browse available plans, and subscribe
- Notifications — View call completion events and system notifications
Available Tools
| 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 |
Example Prompts
Once configured, ask Claude things like:
- "Show me my Leximo assignments"
- "Create a call to +1234567890 to book a restaurant for 2 at 7pm Friday"
- "How many credits do I have left?"
- "What subscription plans are available?"
- "Show me the transcript from my last call"
- "What agents are available and which one is best for restaurant bookings?"
Development
npm install
npm run build # Compile TypeScript
npm start # Run compiled server
npm run dev # Run with tsx (hot reload)
Test with MCP Inspector
LEXIMO_API_TOKEN=your-token npx @modelcontextprotocol/inspector node dist/index.js
Environment Variables
| Variable | Required | Description |
|---|---|---|
LEXIMO_API_TOKEN |
Yes | JWT token from concierge.leximo.ai/profile |
Copy .env.example to .env for local development.
License
Recommended MCP Servers
How it compares
Leximo telephony MCP bridge, not a general calendar skill or open-source voice stack.
FAQ
Who is Leximo AI Call Assistant MCP for?
Developers and small teams on Leximo who want Claude to manage AI phone call scheduling, assignments, and credits.
When should I use Leximo AI Call Assistant MCP?
Use it during grow/support when you run Leximo-powered call campaigns and need agent-side scheduling and balance checks.
How do I add Leximo AI Call Assistant MCP to my agent?
Install leximo-ai-call-assistant-mcp-server from npm, set LEXIMO_API_TOKEN from concierge.leximo.ai/profile, and register the stdio server in your MCP host.