Tapaya
Getting StartedMCP Setup

MCP Setup

Connect AI agents and IDEs to the Tapaya documentation and REST API over the Model Context Protocol.

The Tapaya Docs MCP server lets AI agents and IDEs search this documentation and explore the Tapaya REST API directly, without leaving your editor. It is read-only, public, and requires no API key or secret.

Server URL

https://docs.tapaya.com/mcp

The server speaks Streamable HTTP and works with any MCP client.

Connect your client

Install the plugin (recommended):

claude plugin marketplace add tapayadot/tapaya-mcp
claude plugin install tapaya-docs@tapaya

Or add the server directly without the plugin:

claude mcp add --transport http tapaya-docs https://docs.tapaya.com/mcp

Then check it is connected:

claude mcp list
Install in Cursor

Or add the following to ~/.cursor/mcp.json manually:

{
  "mcpServers": {
    "tapaya-docs": {
      "url": "https://docs.tapaya.com/mcp"
    }
  }
}
Install in VS Code

Or add the following to .vscode/mcp.json in your workspace manually:

{
  "servers": {
    "tapaya-docs": {
      "type": "http",
      "url": "https://docs.tapaya.com/mcp"
    }
  }
}

Add the following to your Claude Desktop MCP config:

{
  "mcpServers": {
    "tapaya-docs": {
      "url": "https://docs.tapaya.com/mcp"
    }
  }
}

MCP is an open protocol. Point any Streamable HTTP client at the server url https://docs.tapaya.com/mcp. You can list the available tools with a raw request:

curl -s https://docs.tapaya.com/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Available tools

ResourceToolDescription
API toolssearch_docsFull-text search across all documentation pages.
get_pageFetch the full Markdown of a page by its url.
list_pagesList every page as title, url, and description.
search_api_endpointsSearch the Tapaya REST API by keyword.
get_api_endpointGet full parameters and responses for one endpoint.

Notes and safety

This server is read-only. It never calls the live Tapaya API and never asks for API keys or secrets.

When you combine multiple MCP servers, exercise the usual caution around prompt injection from tool output, and enable human confirmation for tools where your client supports it.

Found a problem or want another tool? Open an issue on the docs repository.

On this page