API Deposu
Open catalogMCPTest LabSubmit APISupport

API Deposu MCP

Connect Claude, Codex, and other MCP clients to API Deposu's read-only catalog tools.

Create a key in portalBack to catalog

Quick start

1

Get a key

Create a new key from the MCP keys page in the portal.

2

Add to client

Add the endpoint and key to Codex, Claude, or another client.

3

Start using

Search APIs and query details using catalog tools in chat.

Endpoint & Auth

Use this endpoint and auth info for remote MCP connections.

https://mcp.apideposu.com/mcp

Use this endpoint for production remote MCP connections. If your client asks for an MCP server URL, enter this address.

Authentication
Authorization: Bearer <your-key>
x-api-key: <your-key>

How do I get an API key?

Each user manages their own keys.

Create your own MCP access key from the portal. The full token is shown only once at creation time.

  1. Sign in and open the MCP keys page in the portal.
  2. Create a new key and store the full value securely.
  3. Use the same key in Codex, Claude, or any other supported MCP client.
  4. Revoke unused keys from the portal whenever you need to.
Create a key in portal

Client setup

If you use Codex CLI, add the remote MCP server once, then use normal prompts to call the catalog tools.

  1. Put the portal-issued API key into an environment variable.
  2. Add the MCP server once.
  3. In a new Codex session, ask for API search, category listings, or API details.
$env:APIDEPOSU_MCP_TOKEN="<your-key>"
codex mcp add api-deposu --url https://mcp.apideposu.com/mcp --bearer-token-env-var APIDEPOSU_MCP_TOKEN

Node / fetch note

The most common Node, fetch, and undici mistakes produce 405 and 406 responses. Keep the request contract below exact.

  • Always send POST requests to the MCP endpoint, never GET.
  • Use Content-Type: application/json.
  • Use Accept: application/json, text/event-stream.
  • Use /healthz for health checks. Opening /mcp in a browser is not the intended flow.

Current tool set

  • ping

    Server health check and fast smoke test.

  • list_categories

    Lists catalog categories and approved API counts.

  • count_apis

    Returns the total number of approved APIs matching the current filters.

  • search_apis

    Searches the catalog with text, filters, sorting, date windows, and pagination.

  • get_api_details

    Returns one API with optional playground details.

Example prompts

Usage limits

  • The public MCP surface only exposes read-only catalog tools.
  • Keep your API key private; keys can be revoked and rotated from the portal.
  • High-volume usage may be subject to rate and quota limits.
  • Write, delete, or account-changing actions are not exposed through this MCP.
Create a key in portalBack to catalogSupport