Skip to main content
The meetergo MCP (Model Context Protocol) server allows AI applications to search and retrieve information from our documentation in real-time.

Overview

MCP is an open protocol that enables AI assistants like Claude, ChatGPT, and custom AI applications to access external knowledge bases. With meetergo’s hosted MCP server, your AI application can:
  • Search across the entire meetergo knowledge base
  • Find relevant API references and code examples
  • Access up-to-date documentation without manual updates
  • Provide accurate answers about meetergo features and integration

MCP Server URL

Use the following URL to connect AI applications to meetergo documentation:
https://developer.meetergo.com/mcp

Available Tools

SearchMeetergo

Search across the meetergo knowledge base to find relevant information, code examples, API references, and guides. Use this tool when you need to:
  • Answer questions about meetergo
  • Find specific documentation
  • Understand how features work
  • Locate implementation details
The search returns contextual content with titles and direct links to the documentation pages. Parameters:
ParameterTypeRequiredDescription
querystringYesThe search query to find relevant documentation
Example Request:
{
  "tool": "SearchMeetergo",
  "parameters": {
    "query": "webhook events booking created"
  }
}
Example Response:
{
  "results": [
    {
      "title": "Webhook Events",
      "url": "https://developer.meetergo.com/developer-docs/webhooks/events",
      "content": "The booking.created event fires when a new booking is confirmed..."
    },
    {
      "title": "Webhooks Overview",
      "url": "https://developer.meetergo.com/developer-docs/webhooks/overview",
      "content": "Configure webhooks to receive real-time notifications..."
    }
  ]
}

Integration Examples

Claude Desktop

Add meetergo’s MCP server to your Claude Desktop configuration:
1

Open Claude Desktop settings

Navigate to Claude Desktop → Settings → Developer → MCP Servers
2

Add the meetergo server

Click “Add Server” and enter the following configuration:
{
  "mcpServers": {
    "meetergo": {
      "url": "https://developer.meetergo.com/mcp"
    }
  }
}
3

Restart Claude Desktop

Close and reopen Claude Desktop to activate the MCP server
Once configured, Claude can automatically search meetergo documentation when you ask questions about the platform.

Cursor IDE

Add meetergo documentation access to Cursor:
1

Open Cursor settings

Press Cmd+, (Mac) or Ctrl+, (Windows/Linux) to open settings
2

Navigate to MCP configuration

Search for “MCP” in settings or navigate to Features → MCP Servers
3

Add the meetergo server

Add a new MCP server with URL:
https://developer.meetergo.com/mcp

Claude Code CLI

Add meetergo’s MCP server to your Claude Code configuration:
claude mcp add meetergo --transport sse https://developer.meetergo.com/mcp
Or manually add to your ~/.claude/settings.json:
{
  "mcpServers": {
    "meetergo": {
      "url": "https://developer.meetergo.com/mcp",
      "transport": "sse"
    }
  }
}

Custom AI Applications

For custom AI applications using the MCP protocol, connect to the server using the standard MCP client:
import { MCPClient } from '@modelcontextprotocol/sdk';

const client = new MCPClient({
  serverUrl: 'https://developer.meetergo.com/mcp'
});

// Search meetergo documentation
const results = await client.callTool('SearchMeetergo', {
  query: 'how to create a booking'
});

console.log(results);

Python Example

from mcp import MCPClient

client = MCPClient(server_url="https://developer.meetergo.com/mcp")

# Search for documentation
results = client.call_tool(
    "SearchMeetergo",
    {"query": "availability API endpoint"}
)

for result in results:
    print(f"{result['title']}: {result['url']}")

Use Cases

AI Customer Support

Build support bots that can accurately answer questions about meetergo integration and features

Developer Assistants

Enhance your IDE AI assistant with meetergo-specific knowledge for faster development

Documentation Chatbots

Create conversational interfaces for your meetergo documentation

Internal Tools

Build internal tools that help your team work with meetergo APIs

Best Practices

Be specific with queries - More specific queries return more relevant results
Combine with API calls - Use MCP for documentation lookup, then make actual API calls for operations
Cache frequent queries - If your application makes repeated similar queries, consider caching results
Handle empty results - Always handle cases where no relevant documentation is found
The MCP server provides read-only access to documentation. To perform actual operations like creating bookings, use the meetergo REST API.

Troubleshooting

  • Verify the URL is correct: https://developer.meetergo.com/mcp
  • Check your network connection and firewall settings
  • Ensure your MCP client supports SSE (Server-Sent Events) transport
  • Try broader search terms
  • Check spelling of technical terms
  • Search for related concepts if exact term isn’t found
  • Ensure your MCP client is up to date
  • meetergo’s MCP server uses the standard MCP protocol
  • Check the MCP specification for compatibility requirements

Next Steps