# MCP Server Integration

#### Understanding MCP <a href="#understanding-mcp" id="understanding-mcp"></a>

The Model Context Protocol (MCP) is an open standard that enables AI assistants to securely connect to external data sources and tools. Think of it as a universal adapter that allows AI systems to access real-world data and services.

**Why MCP Matters**

**Before MCP:**

* AI assistants were limited to training data
* Each integration required custom development
* No standardized way to access external tools

**With MCP:**

* AI assistants can access real-time data
* Standardized protocol for tool integration
* Secure, permission-based access control

#### Supported Clients <a href="#supported-clients" id="supported-clients"></a>

ContextBridge MCP servers work with any MCP-compatible client:

**Claude Desktop**

* Official Anthropic client
* JSON config file configuration
* Full MCP support, tool calling, resource access

**Cursor IDE**

* AI-powered code editor
* Settings JSON configuration
* Code completion with blockchain data

**Cline (VS Code Extension)**

* AI coding assistant
* Extension settings configuration
* Inline code suggestions with market data

**Custom Implementations**

* Any MCP-compatible client
* Standard MCP protocol
* Full protocol support

#### Configuration Guide <a href="#configuration-guide" id="configuration-guide"></a>

**Claude Desktop Setup**

1. **Locate Config File**
   * **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
   * **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
2. **Add ContextBridge Servers**

```json
{
  "mcpServers": {
    "price-prediction": {
      "url": "https://backend.contextbridge.xyz/mcp/price-prediction",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "market-intelligence": {
      "url": "https://backend.contextbridge.xyz/mcp/market-intelligence",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "blockchain-explorer": {
      "url": "https://backend.contextbridge.xyz/mcp/blockchain-explorer",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "token-intelligence": {
      "url": "https://backend.contextbridge.xyz/mcp/token-intelligence",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "portfolio-analytics": {
      "url": "https://backend.contextbridge.xyz/mcp/portfolio-analytics",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "whale-intelligence": {
      "url": "https://backend.contextbridge.xyz/mcp/whale-intelligence",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "social-intelligence": {
      "url": "https://backend.contextbridge.xyz/mcp/social-intelligence",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "kol-analytics": {
      "url": "https://backend.contextbridge.xyz/mcp/kol-analytics",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    },
    "project-intelligence": {
      "url": "https://backend.contextbridge.xyz/mcp/project-intelligence",
      "transport": "http",
      "headers": {
        "x-api-key": "YOUR_API_KEY_HERE"
      }
    }
  }
}

```

#### 9 Professional Servers <a href="#id-10-professional-servers" id="id-10-professional-servers"></a>

ContextBridge provides 9 specialized MCP servers:

1. **Price Prediction Server** - AI-powered cryptocurrency price forecasting
2. **Market Intelligence Server** - Real-time market data and analysis
3. **Blockchain Explorer Server** - On-chain data retrieval and analysis
4. **Token Intelligence Server** - Comprehensive token analysis
5. **Portfolio Analytics Server** - Advanced wallet and portfolio analysis
6. **Whale Intelligence Server** - Large transaction monitoring
7. **Social Intelligence Server** - Social sentiment and trend analysis
8. **KOL Analytics Server** - Key Opinion Leader analysis
9. **Project Intelligence Server** - Comprehensive project research


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://contextbridge.gitbook.io/context-bridge/getting-started/publish-your-docs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
