Connecting Claude and ChatGPT to the AsteriskRecipes MCP Server

Getting Started -- Last reviewed 2026-07-27 mcp ai claude chatgpt integrations getting-started Found this useful? Upvote it. ×

Connecting Claude and ChatGPT to the AsteriskRecipes MCP Server

AsteriskRecipes.com runs a public, read-only MCP (Model Context Protocol) server at https://asteriskrecipes.com/mcp. It gives AI assistants direct, structured access to the site's reference library, applications, functions, AGI commands, AMI actions and events, and module configuration, instead of relying on whatever the model picked up during training (which is often outdated or wrong for a specific Asterisk version).

No API key, no account, no sign-up. It's rate-limited but otherwise open to anyone.

On this page

What it's for

Ask your assistant something like "what arguments does the Asterisk Dial() application take" or "which AMI events fire during a transfer," and instead of guessing, it can query this server for the current, correct answer sourced directly from the Asterisk project's own XML documentation.

This is a good fit for:

Connecting Claude Code

Claude Code can add a remote HTTP MCP server directly from the command line:

claude mcp add --transport http asteriskrecipes https://asteriskrecipes.com/mcp --scope user

--scope user makes the server available in every project on your machine, not just the one you're currently in. Verify the connection:

/mcp

You should see asteriskrecipes listed as connected.

If you'd rather hand-edit config instead of using the CLI, add this to ~/.claude.json (user scope) or your project's .mcp.json:

{
  "mcpServers": {
    "asteriskrecipes": {
      "type": "http",
      "url": "https://asteriskrecipes.com/mcp"
    }
  }
}

Connecting Claude Desktop or claude.ai

Custom remote connectors work the same way across claude.ai, Claude Desktop, and Cowork, since they all connect through Anthropic's cloud rather than your local machine.

  1. Go to Settings > Connectors
  2. Click Add custom connector
  3. Enter the server URL: https://asteriskrecipes.com/mcp
  4. Click Add. No OAuth client ID or secret is needed, this server has no authentication.

To use it in a conversation, click the + button in the chat input, choose Connectors, and toggle it on.

Team and Enterprise plans

An Owner has to add the connector at the organization level first (Organization settings > Connectors > Add > Custom > Web), after which individual members connect it themselves under Customize > Connectors.

Connecting ChatGPT

ChatGPT supports custom MCP connectors through Developer Mode (Pro, Team, Enterprise, and Edu plans):

  1. Settings > Connectors > Advanced, toggle Developer mode on
  2. In a chat, open the connectors menu and add a custom connector
  3. Enter the server URL: https://asteriskrecipes.com/mcp

The server implements the search and fetch tool contract ChatGPT's connector UI requires, so it works without any extra configuration.

Available tools

Tool What it does
search_reference Search the reference library by keyword. Returns matching entry titles, IDs, and short descriptions.
get_reference_entry Fetch the full markdown content of one entry by category and slug.
list_reference_categories List reference categories (applications, functions, AGI commands, AMI actions, AMI events, module configuration) with entry counts.
compatibility_lookup List entries available as of a given Asterisk version, useful for checking whether something exists on an older install.
search / fetch Fixed single-argument contract required by ChatGPT and similar connector UIs. Equivalent to search_reference and get_reference_entry under the hood.

Example prompts

Once connected, you don't need to name the tools directly, just ask:

Scope and limits

This server is intentionally narrow:

Discovery for AI agents and crawlers

Agents that support machine-readable discovery don't need this guide at all. The server publishes:

A solid choice for hosting Asterisk.

High-performance cloud compute starting at $2.50/mo. Deploy a VPS in seconds.

Get $100 Free Credit

Referral link. Helps support this site.

User Notes

Know a tip or gotcha for this topic? Share it below and help others.

Contribute a note

Share a tip, gotcha, or practical example. Keep it under 2000 characters. No questions (use the Asterisk community forums for support). Wrap code in backticks.

Moderated before publishing. Email never shown.
Related Snippets