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

@cliniq360/eigi-mcp

v1.0.10

Published

MCP server for eigi.ai - Create and manage AI voice agents, conversations, and real-time voice interactions

Readme

eigi-mcp

MCP Registry License: MIT

MCP (Model Context Protocol) server for eigi.ai - enabling AI-native integration with your AI voice and chat agents through Claude Desktop, Cursor, VS Code, and other MCP-compatible clients.

Features

  • 20+ MCP Tools for managing agents, conversations, calls, chats, and prompts
  • Real-time Voice Testing via interactive UI
  • OAuth 2.0 Authentication with PKCE for secure access
  • Hosted Server - No installation required

Quick Start

Connect to eigi.ai MCP Server

Add to your MCP client configuration:

{
  "mcpServers": {
    "eigi": {
      "url": "https://mcp.eigi.ai/mcp",
      "transport": "streamable-http"
    }
  }
}

When you first connect, you'll be prompted to authenticate via OAuth. Simply sign in with your eigi.ai account.

Client Setup

Claude Desktop

Edit claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "eigi": {
      "url": "https://mcp.eigi.ai/mcp",
      "transport": "streamable-http"
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "eigi": {
      "url": "https://mcp.eigi.ai/mcp",
      "transport": "streamable-http"
    }
  }
}

VS Code with Copilot

Add to .vscode/mcp.json:

{
  "servers": {
    "eigi": {
      "url": "https://mcp.eigi.ai/mcp",
      "transport": "streamable-http"
    }
  }
}

## MCP Tools

### Agents

| Tool               | Description                                   |
| ------------------ | --------------------------------------------- |
| `list-agents`      | List AI voice agents with pagination          |
| `get-agent`        | Get agent configuration by ID                 |
| `create-agent`     | Create a new AI agent with STT/LLM/TTS config |
| `update-agent`     | Update an existing agent's settings           |
| `delete-agent`     | Delete an agent by ID                         |
| `test-voice-agent` | Open interactive UI to test an agent          |

### Conversations

| Tool                 | Description                                   |
| -------------------- | --------------------------------------------- |
| `list-conversations` | List voice/chat conversations with filters    |
| `get-conversation`   | Get full conversation details with transcript |

### Calls

| Tool                     | Description                                    |
| ------------------------ | ---------------------------------------------- |
| `initiate-outbound-call` | Start an outbound voice call using an AI agent |
| `get-mobile-numbers`     | List available phone numbers for agents        |

### Chat

| Tool                      | Description                             |
| ------------------------- | --------------------------------------- |
| `list-chat-sessions`      | List text chat sessions                 |
| `get-chat-session`        | Get complete chat session with messages |
| `send-chat-message`       | Send a message and get response         |
| `get-agent-first-message` | Get agent's greeting message            |

### Prompts

| Tool                  | Description                                 |
| --------------------- | ------------------------------------------- |
| `list-prompts`        | List system prompts with pagination         |
| `get-prompt`          | Get prompt content by name                  |
| `get-prompt-versions` | Get version history for a prompt            |
| `create-prompt`       | Create a new system prompt                  |
| `update-prompt`       | Update prompt content (creates new version) |

### Providers

| Tool             | Description                                |
| ---------------- | ------------------------------------------ |
| `list-providers` | List available LLM, TTS, and STT providers |
| `list-voices`    | List available voices for a TTS provider   |

## Authentication

eigi.ai MCP uses **OAuth 2.0 with PKCE** for secure authentication:

1. Connect to `https://mcp.eigi.ai/mcp`
2. Your MCP client will open a browser window
3. Sign in with your eigi.ai account (or create one)
4. Grant permissions to the MCP client
5. You're connected!

OAuth tokens are automatically refreshed, so you stay logged in.

## Links

- [eigi.ai Platform](https://eigi.ai)
- [GitHub Repository](https://github.com/eigi-ai/eigi-mcp)
- [MCP Documentation](https://modelcontextprotocol.io)
- [Privacy Policy](https://eigi.ai/privacy-policy)
- [Terms of Service](https://eigi.ai/terms-of-service)

## License

MIT - © ClinIQ360