npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

leximo-ai-call-assistant-mcp-server

v1.0.1

Published

MCP server for Leximo AI Call Assistant — schedule AI phone calls, manage assignments, check credits, and handle subscriptions directly from Claude.

Readme

Leximo AI Call Assistant — MCP Server

npm version Node >=18 MCP License: MIT

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

  1. Go to concierge.leximo.ai and sign in
  2. Open your profile page
  3. 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

MIT © Leximo