Skip to content
MCP-BridgeMCP-Bridge
Developer Tools

ApiDapp MCP Config

ApiDapp API

Config URL

Use this URL in any MCP-compatible client to fetch the config automatically.

https://mcpbridge.org/config/apidapp-com.json

One-Click Install

Copy the snippet for your MCP client and paste it in — zero editing required.

Claude Desktop

Add to claude_desktop_config.json

{
  "mcpServers": {
    "apidapp-com": {
      "command": "npx",
      "args": [
        "-y",
        "@mcp/apidapp-com"
      ],
      "env": {
        "APIDAPP_API_KEY": "your_apidapp_api_key"
      }
    }
  }
}

Cursor

Settings → MCP Servers → Add

{
  "mcpServers": {
    "apidapp-com": {
      "url": "https://mcpbridge.org/config/apidapp-com.json"
    }
  }
}

VS Code

Use with MCP extension

{
  "mcpServers": {
    "apidapp-com": {
      "url": "https://mcpbridge.org/config/apidapp-com.json"
    }
  }
}

Configuration JSON

Use curl https://mcpbridge.org/config/apidapp-com.json to fetch programmatically.

{
  "mcpServers": {
    "apidapp-com": {
      "command": "npx",
      "args": ["-y","@mcp/apidapp-com"],
      "env": {
      "APIDAPP_API_KEY": "your_apidapp_api_key"
}
    }
  }
}

How to Use

Claude Desktop

Paste the config JSON into your claude_desktop_config.json.

Full instructions →

Cursor

Go to Cursor Settings → MCP Servers → Add with the JSON above.

CLI / curl

Fetch the config programmatically:

curl https://mcpbridge.org/config/apidapp-com.json

Environment Variables

APIDAPP_API_KEY

Replace your_apidapp_api_key with your actual apidapp api key

Endpoints

POST/account

POST /account

GET/account/{id}

GET /account/{id}

GET/block

GET /block

GET/block/{id}

GET /block/{id}

GET/block/{id}/transaction

GET /block/{id}/transaction

GET/block/{id}/transaction/{index}

GET /block/{id}/transaction/{index}

GET/blockchain

GET /blockchain

GET/blockchain/{id}

GET /blockchain/{id}

POST/contract

POST /contract

GET/contract/{id}

GET /contract/{id}