DexScreener MCP 服务器
一个用于访问 DexScreener API 的 MCP 服务器实现,提供实时的去中心化交易所数据。
快速入门
安装
一键安装(自动添加到 Claude Desktop):
curl -L https://raw.githubusercontent.com/opensvm/dexscreener-mcp-server/main/install.sh | bash
手动安装:
npm install npm run build npm run setup
测试
运行测试:
npm test
使用示例
获取最新 Token 配置文件: const result = await mcpClient.callTool('dexscreener', 'get_latest_token_profiles'); 搜索配对信息: const result = await mcpClient.callTool('dexscreener', 'search_pairs', { query: 'SOL' });
更多工具和用法,请参考文档。