MCP Server

Streamable-HTTP MCP server exposing Inqud's OpenAPI spec and public docs as tools for AI agents. Public, no auth.

The Inqud MCP server exposes our public OpenAPI spec and documentation as tools that any MCP-compatible AI client can call. Once connected, your AI assistant can search endpoints, inline schemas, and fetch docs pages on demand — without leaving your editor.

  • Endpoint: https://mcp.inqud.com/v1/mcp

  • Transport: Streamable HTTP (JSON-RPC over HTTP POST)

  • Auth: none

Setup

One-line install:

claude mcp add --transport http inqud https://mcp.inqud.com/v1/mcp

Or add manually to ~/.claude.json (user scope) or .mcp.json (project scope):

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

Verify with /mcp inside Claude Code — inqud should be listed as connected.

Available tools

Tool
What it does

lookup_list_endpoints

List every endpoint in the public API (method, path, summary, tag).

lookup_search_endpoints

Ranked search over endpoints by keyword.

lookup_get_endpoint

Full operation detail for a given method + path, with all $ref s inlined.

lookup_search_docs

Search docs.inqud.com.

lookup_get_doc_page

Fetch the full markdown of a docs page by URL.

Try it

Once connected, prompt your agent like this:

  • "How do I verify the signature on Inqud webhooks? Show me a code example."

  • "What's the request body for creating a crypto-acquiring checkout? Show me the schema with all required fields."

  • "Show me how to create an on-ramp checkout via the API — request shape and response."

  • "How do I set up webhooks to track mass payout batch and individual payment status updates?"

  • "Walk me through the crypto recurring flow from creating a plan to an active subscription, and show me the endpoint to create a plan."

The agent will pick the right tool (lookup_search_endpoints, lookup_get_endpoint, lookup_search_docs, lookup_get_doc_page) automatically.

Last updated