德克筛网 MCP 服务器是一个用于访问德克筛网 API 的实现方案,它能提供实时 DEX 对数据、代币信息和市场统计等多种区块链的数据访问,为用户带来便捷的数据获取体验。
一键安装(自动添加到 Claude Desktop):
curl -L https://raw.githubusercontent.com/opensvm/dexscreener-mcp-server/main/install.sh | bash
手动安装:
npm install
npm run build
npm run setup
get_latest_token_profiles
const result = await mcpClient.callTool('dexscreener', 'get_latest_token_profiles');
get_latest_boosted_tokens
const result = await mcpClient.callTool('dexscreener', 'get_latest_boosted_tokens');
get_top_boosted_tokens
const result = await mcpClient.callTool('dexscreener', 'get_top_boosted_tokens');
get_token_orders
const result = await mcpClient.callTool('dexscreener', 'get_token_orders', {
chainId: 'solana',
tokenAddress: 'So1111111111111111111111111111111
npm test