mirror of
https://github.com/FlipsideCrypto/flipside-mcp-extension.git
synced 2026-02-06 03:06:48 +00:00
76 lines
2.1 KiB
JSON
76 lines
2.1 KiB
JSON
{
|
|
"dxt_version": "1.0",
|
|
"name": "flipside-intelligence-mcp",
|
|
"version": "1.2.2",
|
|
"display_name": "Flipside Intelligence",
|
|
"description": "Your personal blockchain data scientist via MCP",
|
|
"long_description": "AI-powered blockchain analytics accessible through Claude Desktop. Execute sophisticated blockchain analysis with natural language queries - from cohort analysis to trend detection across 30+ networks with billions of indexed transactions.",
|
|
"author": {
|
|
"name": "Flipside",
|
|
"email": "support@flipside.xyz",
|
|
"url": "https://flipside.xyz"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/flipside-org/flipside-mcp-extension"
|
|
},
|
|
"homepage": "https://flipside.xyz",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"blockchain",
|
|
"analytics",
|
|
"data-science",
|
|
"mcp",
|
|
"flipside",
|
|
"defi",
|
|
"crypto",
|
|
"intelligence"
|
|
],
|
|
"server": {
|
|
"type": "binary",
|
|
"entry_point": "${__dirname}/remote-mcp-proxy",
|
|
"mcp_config": {
|
|
"command": "${__dirname}/remote-mcp-proxy",
|
|
"env": {
|
|
"MCP_REMOTE_URL": "${user_config.remote_url}",
|
|
"MCP_DEBUG": "${user_config.debug}",
|
|
"FLIPSIDE_API_KEY": "${user_config.api_key}"
|
|
}
|
|
}
|
|
},
|
|
"user_config": {
|
|
"remote_url": {
|
|
"type": "string",
|
|
"title": "Flipside Intelligence Endpoint",
|
|
"description": "The MCP endpoint for Flipside Intelligence services",
|
|
"required": true,
|
|
"default": "https://mcp.flipsidecrypto.xyz/beta/sse"
|
|
},
|
|
"api_key": {
|
|
"type": "string",
|
|
"title": "Flipside API Key",
|
|
"description": "Your Flipside API key for authenticated access",
|
|
"required": true,
|
|
"sensitive": true
|
|
},
|
|
"debug": {
|
|
"type": "boolean",
|
|
"title": "Enable Debug Mode",
|
|
"description": "Enable verbose logging for troubleshooting queries and connections",
|
|
"required": false,
|
|
"default": false
|
|
}
|
|
},
|
|
"compatibility": {
|
|
"platforms": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"architectures": [
|
|
"amd64",
|
|
"arm64"
|
|
]
|
|
}
|
|
}
|