Skip to main content
Glama

AsyncAPI MCP Server

MIT License TypeScript

An MCP (Model Context Protocol) server that gives AI assistants access to the AsyncAPI specification. Search, explore, and retrieve any version of the spec directly from your coding tool.

Features

  • Search the AsyncAPI specification by keyword

  • Retrieve specific sections by heading or slug

  • List all stable spec versions available as GitHub tags

  • Get metadata about the spec (version, source, cache info, size)

  • Version-aware — query any released spec version, or default to the latest

  • Caching — ETag/Last-Modified-based HTTP caching with a 10-minute TTL on tag lookups

Related MCP server: EasyPeasyMCP

Quick Start

Remote (Self-hosted on Render)

The recommended way to use this server is to deploy your own instance on Render — it's free (no credit card required). Add the following to your MCP client configuration:

{
  "mcpServers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

See the Configuration section below for client-specific instructions, and the Deployment section for setup steps.

Local (Self-hosted)

Prerequisites

Install

npm install

Build

npm run build

Run

Streamable HTTP (for local development):

npm run dev

The server starts on http://localhost:3000/mcp by default. Set the PORT environment variable to use a different port:

PORT=8080 npm run dev

Stdio (for local MCP clients):

npm run start:stdio

Available Tools

Tool

Description

Parameters

list_asyncapi_spec_versions

List stable AsyncAPI spec versions available as GitHub tags

None

get_asyncapi_spec_metadata

Return source, version, cache, and size metadata for a spec

version (optional)

search_asyncapi_spec

Search the spec and return matching snippets

query (required), version (optional), limit (default: 10, max: 20)

validate_asyncapi_spec

Validate raw AsyncAPI YAML or JSON content and return validation errors

spec (required)

get_asyncapi_spec_section

Return a section by heading text or slug

heading (required), version (optional)

Available Resources

Resource

URI

Description

Latest AsyncAPI Spec

asyncapi://spec/latest

The latest AsyncAPI markdown specification from the master branch

AsyncAPI Spec by Version

asyncapi://spec/{version}

A specific version of the spec fetched from the matching GitHub release tag

Configuration for AI Coding Tools

Remote (Render hosted)

Use these configs to connect to your self-hosted Render instance. Make sure you've deployed the server first.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

VS Code Copilot

Add to .vscode/mcp.json in your project root:

{
  "servers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp",
      "type": "http"
    }
  }
}

Windsurf

Add to your Windsurf MCP settings:

{
  "mcpServers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

Cline

In Cline's MCP settings, add:

{
  "mcpServers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

OpenCode

Add to your OpenCode configuration:

{
  "mcp": {
    "servers": {
      "asyncapi": {
        "url": "https://asyncapi-mcp.onrender.com/mcp"
      }
    }
  }
}

Zed

Add to your Zed settings.json:

{
  "context_servers": {
    "asyncapi": {
      "url": "https://asyncapi-mcp.onrender.com/mcp"
    }
  }
}

Local (Self-hosted)

Use these configs when running the server locally with npm run dev. Make sure the server is running before connecting.

Claude Desktop

{
  "mcpServers": {
    "asyncapi": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

Cursor

{
  "mcpServers": {
    "asyncapi": {
      "url": "http://localhost:3000/mcp"
    }
  }
}

VS Code Copilot

{
  "servers": {
    "asyncapi": {
      "url": "http://localhost:3000/mcp",
      "type": "http"
    }
  }
}

Windsurf / Cline / OpenCode / Zed

Replace the Render URL in the configs above with http://localhost:3000/mcp.

Deployment

Render provides a free web service tier with no credit card required. This is the easiest way to host your MCP server.

Free tier behavior

  • 750 free instance hours per month — plenty for a single MCP server

  • Sleeps after 15 minutes of idle time — the service spins down when nobody is using it

  • Wakes up on next request — takes about 30–60 seconds to respond after sleep

  • No credit card required — truly $0

Prerequisites

Deploy via Git

  1. In the Render dashboard, click NewWeb Service.

  2. Connect your GitHub account and select your repository.

  3. Render will auto-detect the Node.js buildpack.

  4. Set the following:

    • Name: asyncapi-mcp (or whatever you prefer)

    • Runtime: Node

    • Build Command: npm install && npm run build

    • Start Command: npm start

    • Instance Type: Free

  5. Add environment variable:

    • PORT = 3000

  6. Click Create Web Service.

Render will build and deploy your app. Once finished, you'll get a public URL like https://asyncapi-mcp.onrender.com.

Configure your MCP client

Your Render domain is already configured in the Configuration section above.

Health check

You can verify the server is running by visiting:

https://asyncapi-mcp.onrender.com/health

Self-hosted (Docker)

Build and run with the included Dockerfile:

docker build -t asyncapi-mcp .
docker run -p 3000:3000 asyncapi-mcp

The HTTP server will be available at http://localhost:3000/mcp.

Self-hosted (Local machine)

npm install
npm run build
npm start

The server starts on http://localhost:3000/mcp by default.

Usage Examples

Once configured, you can ask your AI assistant questions like:

  • "What does the AsyncAPI spec say about server objects?"

  • "Search the AsyncAPI spec for 'channels'"

  • "Get the Info Object section from version 2.6.0"

  • "List all available AsyncAPI spec versions"

  • "What are the differences between messages in AsyncAPI 2.x and 3.x?"

  • "Show me the spec section about schema definitions"

Development

# Install dependencies
npm install

# Build TypeScript to dist/
npm run build

# Run the HTTP server (local development)
npm run dev

# Run the stdio server (for local MCP clients)
npm run start:stdio

# Type-check without emitting
npx tsc --noEmit
Install Server
A
license - permissive license
A
quality
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    An MCP server that enables AI agents to search, discover, and retrieve technical specifications from a SpecLib instance. It provides tools for full-text search, scope listing, and reading specs as markdown content.
    Last updated
  • A
    license
    -
    quality
    C
    maintenance
    A lightweight, zero-config MCP server that makes documentation and API specifications instantly accessible to AI models using the llms.txt standard. It enables searching and retrieving full documentation, OpenAPI, and AsyncAPI specs without requiring a complex RAG infrastructure or vector database.
    Last updated
    36
    1
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • An MCP server that gives your AI access to the source code and docs of all public github repos

  • Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.

  • MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Souvikns/asyncapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server