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. Replace your-token with your API token from concierge.leximo.ai/profile. Then install the plugin: 1. Go to concierge.leximo.ai and sign in 2. Open your profile page 3. Copy your JWT access token Add to ~/Library/Applicatio
Add this skill
npx mdskills install Leximo-AI/leximo-ai-call-assistant-mcp-serverWell-documented MCP server with comprehensive API coverage for AI call management and clear setup instructions
1# Leximo AI Call Assistant — MCP Server23[](https://www.npmjs.com/package/leximo-ai-call-assistant-mcp-server)4[](https://nodejs.org)5[](https://modelcontextprotocol.io)6[](LICENSE)78An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that lets you schedule AI phone calls and manage [Leximo](https://leximo.ai) assignments directly from Claude Desktop or Claude Code — no app switching needed.910---1112## Quick Install1314### Claude Code (one command)1516```bash17claude mcp add leximo -e LEXIMO_API_TOKEN=your-token -- npx -y leximo-ai-call-assistant-mcp-server18```1920Replace `your-token` with your API token from [concierge.leximo.ai/profile](https://concierge.leximo.ai/profile).2122### Claude Code (plugin marketplace)2324```25/plugin marketplace add leximo-ai/leximo-ai-call-assistant-mcp-server26```2728Then install the plugin:2930```31/plugin install leximo-ai-call-assistant32```3334---3536## Manual Setup3738### 1. Get your API token39401. Go to [concierge.leximo.ai](https://concierge.leximo.ai) and sign in412. Open your [profile page](https://concierge.leximo.ai/profile)423. Copy your JWT access token4344### 2. Configure Claude Desktop4546Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):4748```json49{50 "mcpServers": {51 "leximo": {52 "command": "npx",53 "args": ["-y", "leximo-ai-call-assistant-mcp-server"],54 "env": {55 "LEXIMO_API_TOKEN": "your-token"56 }57 }58 }59}60```6162### 3. Configure Claude Code (manual)6364Add to your Claude Code MCP settings:6566```json67{68 "mcpServers": {69 "leximo": {70 "command": "npx",71 "args": ["-y", "leximo-ai-call-assistant-mcp-server"],72 "env": {73 "LEXIMO_API_TOKEN": "your-token"74 }75 }76 }77}78```7980---8182## Features8384- **Assignments** — Create, list, view, and delete AI phone call assignments85- **AI Agents** — Browse available calling agents and pick the right one86- **Task Proposals** — Get AI-generated improvements for your call instructions87- **Credits** — Check your credit balance and usage history88- **Subscriptions** — View your plan, browse available plans, and subscribe89- **Notifications** — View call completion events and system notifications9091---9293## Available Tools9495| Tool | Description |96|------|-------------|97| `get_profile` | Get your user profile and account details |98| `get_credits` | Check credit balance, usage history, and subscription summary |99| `get_subscription` | View active subscription details |100| `get_plans` | List available subscription plans with pricing |101| `create_checkout_session` | Get a checkout URL to subscribe to a plan |102| `list_agents` | List available AI calling agents |103| `get_agent` | Get details of a specific agent |104| `list_assignments` | List all your assignments (paginated) |105| `get_assignment` | View a specific assignment with results and transcript |106| `create_assignment` | Create a new phone call assignment |107| `delete_assignment` | Delete an assignment |108| `get_assignment_proposals` | Get AI suggestions to improve your task description |109| `list_notifications` | Get call completion events and notifications |110111---112113## Example Prompts114115Once configured, ask Claude things like:116117- _"Show me my Leximo assignments"_118- _"Create a call to +1234567890 to book a restaurant for 2 at 7pm Friday"_119- _"How many credits do I have left?"_120- _"What subscription plans are available?"_121- _"Show me the transcript from my last call"_122- _"What agents are available and which one is best for restaurant bookings?"_123124---125126## Development127128```bash129npm install130npm run build # Compile TypeScript131npm start # Run compiled server132npm run dev # Run with tsx (hot reload)133```134135### Test with MCP Inspector136137```bash138LEXIMO_API_TOKEN=your-token npx @modelcontextprotocol/inspector node dist/index.js139```140141### Environment Variables142143| Variable | Required | Description |144|----------|----------|-------------|145| `LEXIMO_API_TOKEN` | Yes | JWT token from [concierge.leximo.ai/profile](https://concierge.leximo.ai/profile) |146147Copy `.env.example` to `.env` for local development.148149---150151## License152153[MIT](LICENSE) © [Leximo](https://leximo.ai)154
Full transparency — inspect the skill content before installing.