MCP Server Setup

The Model Context Protocol (MCP) server connects Mono Protocol’s documentation and API directly to your AI tools. You can choose:

  • Hosted MCP (Recommended): Use a ready-to-go server hosted by Mono Protocol—quickest setup.

  • Self-Hosted MCP (Advanced): Install and run the MCP server locally for flexibility and fine-tuning.

Hosted MCP Setup

For Claude

  1. Navigate to Connectors in Claude’s settings.

  2. Choose Add custom connector.

  3. Set the name to: Mono Protocol MCP

  4. Use this URL: https://docs.monoprotocol.io/mcp (you may want to adapt the domain to Mono Protocol).

  5. Once added, you can access Mono Protocol’s docs and API functions directly within Claude.

For Cursor

  1. Press Cmd + Shift + P (Mac) or Ctrl + Shift + P (Windows) to open MCP settings.

  2. Choose Add custom MCP to edit mcp.json.

Insert the following configuration:

{
  "mcpServers": {
    "Monorotocol-mcp": {
      "url": "https://docs.monoprotocol.io/mcp"
    }
  }
}

  1. (Note: adjust the URL domain as needed.)

  2. Then ask in Cursor chat: "What tools do you have available?" You should see Mono Protocol documentation search and API tools enabled.

Self-Hosted MCP (Advanced)

Ideal for users who want complete control via local installation:

Run: npx mint-mcp add MonoProtocol-d7e5d4d0

  1. You’ll see a list of available tools:

  2. search – Documentation search

  3. predict-smart-account-address – Predict smart account addresses

  4. list-supported-aggregated-assets – View supported assets

  5. get-aggregated-balance – Fetch account balances

  6. list-supported-chains – View supported networks

  7. get-quote-status – Check quote execution status

  8. get-transaction-history – Retrieve transaction history

  9. get-quote – Request transfer/swap quotes

  10. prepare-call-quote – Prepare contract calls

  11. get-call-quote – Get contract call quotes

  12. execute-quote – Execute quotes You’ll be prompted to enter your API key (or use the limited public test key).

Then start your server: node ~/.mcp/MonoProtocol-d7e5d4d0/src/index.js

  1. Use it seamlessly across clients like Cursor or Claude Desktop.

Available Functionality

Both hosted and self-hosted options include:

  • Documentation search across Mono Protocol’s docs.

  • API tools for:

  • Predicting smart account addresses

  • Aggregated balances and asset queries

  • Chain support listing

  • Quote generation, retrieval, and execution

  • Transaction history and status tracking

  • Contract call preparation and execution

Authentication & Testing

  • Your AI tools will prompt for your Mono Protocol API key as needed.

  • For production use, mptain your own key via your dashboard or support email.

Example Usage Prompts

You can use prompts like:

  • "What is my aggregated balance across all chains for address X?"

  • "List supported chains."

  • "Predict a smart account address for these signers..." These examples are typical usage, though primarily found in the MCP Prompts guide.

Last updated