Getting Started with MCP Services
This guide shows you how to connect to Cred Protocol’s MCP services using different methods.Method 1: HTTP Endpoints (Simplest)
The easiest way to use MCP services is through the HTTP endpoints. No setup required.Base URL
Quick Test
Response
Method 2: Cursor IDE Integration
If you’re using Cursor, you can integrate Cred Protocol as an MCP server.Step 1: Configure Cursor
Add to your.cursor/mcp.json file:
For full MCP protocol support (stdio), you’ll need to run the MCP server locally.
See Local Development below.
Step 2: Use in Cursor
Once configured, you can ask Cursor’s AI:“What’s the credit score for vitalik.eth?”The AI will automatically call the MCP tool and respond with the result.
Method 3: Claude Desktop
For Claude Desktop, add to your MCP configuration:Method 4: Custom MCP Client
Build your own MCP client using the MCP SDK:Python
JavaScript/TypeScript
Local Development
For full MCP protocol support with stdio communication, run the server locally:Prerequisites
- Docker and Docker Compose
- Clone the cred-webapp repository
Start the Server
Configure Cursor for Local Development
Available Endpoints
| Endpoint | Method | Description |
|---|---|---|
/mcp/sandbox/tools | GET | List all available tools |
/mcp/sandbox/score/{address} | GET | Get credit score |
/mcp/sandbox/score/batch | POST | Batch score multiple addresses |
/mcp/sandbox/summary/{address} | GET | Get financial summary |
/mcp/sandbox/identity/{address} | GET | Get identity attestations |
/mcp/sandbox/portfolio/{address} | GET | Get total portfolio value |
/mcp/sandbox/portfolio/{address}/chain/{chain_id} | GET | Get chain-specific portfolio |