AgentGo MCP Service is an authentication and data query service designed specifically for AI agents, providing blockchain identity authentication, agent scoring queries, market data analysis, and other core capabilities for AI assistants through the MCP protocol.
- Secure Authentication - Blockchain-based identity verification system
- Data Queries - Real-time agent scoring and market data retrieval
- Certification Applications - Sigma certification badge application and management
- Visualization Analysis - Multi-dimensional market data bubble chart display
This demo video shows how the AgentGo MCP Service is used in Cursor to support authentication, agent scoring, and market data visualization
graph TB
subgraph "User Layer"
A[User/AI Assistant]
end
subgraph "Protocol Layer"
B[MCP Protocol Layer]
end
subgraph "AgentGo MCP Service"
C[Service Gateway]
D[Authentication Module]
E[Data Query Module]
F[Certification Module]
end
subgraph "External Services"
G[TrustGo API]
H[AgentGo API]
I[Sigma Certification System]
end
subgraph "Blockchain"
J[EIP-191 Signature Verification]
K[Wallet Address Verification]
end
A --> B
B --> C
C --> D
C --> E
C --> F
D --> J
D --> K
E --> G
E --> H
F --> I
style A fill:#e1f5fe
style C fill:#f3e5f5
style G fill:#e8f5e8
style H fill:#e8f5e8
style I fill:#e8f5e8
style J fill:#fff3e0
style K fill:#fff3e0
- User Layer: AI assistants or user interfaces
- Protocol Layer: MCP standard protocol processing
- Service Layer: AgentGo core business logic
- External Services: Third-party APIs and data sources
To connect to the MCP server from Cursor:
- Open Cursor and go to Settings (gear icon in the top right)
- Click on "MCP" in the left sidebar
- Click "Add new global MCP server"
- Enter the following details:
Default mode
{
"mcpServers": {
"AgentGoMcp": {
"command": "python3",
"args": ["gentgo_mcp_service.py"],
"env": {
"AGENT_ADDRESS": "0x39a39981bF87EE0e8E9D6434A56f00758c9666f0"
}
}
}
}
Name | Description | Usage Example |
---|---|---|
basic_login_flow |
Complete authentication process with wallet verification | "I want to authenticate with my wallet address 0x742d35..." |
query_agent_score |
Get detailed agent performance metrics and ratings | "What's the Sigma score for agent aixbt?" |
market_data_query |
Retrieve various market visualization data and trends | "Show me the current price bubble chart" |
certification_application |
Apply for official Sigma certification badges | "I want to apply for Sigma certification for aixbt" |
Name | Description |
---|---|
trustgo_login |
Execute login verification with blockchain wallet |
query_sigma_score |
Query agent Sigma score and capability metrics |
query_price_bubble |
Get price bubble chart data for market visualization |
query_sigma_score_bubble |
Get score bubble chart data for agent analysis |
query_market_share_bubble |
Get market share bubble chart data with time options |
apply_sigma_certification |
Apply for Sigma certification (personal or proxy) |
This project is licensed under the MIT License - see the LICENSE file for details.