{"id":24983269,"url":"https://github.com/opensvm/dexscreener-mcp-server","last_synced_at":"2025-04-19T15:56:41.930Z","repository":{"id":271240832,"uuid":"912418777","full_name":"openSVM/dexscreener-mcp-server","owner":"openSVM","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-06T14:59:12.000Z","size":39,"stargazers_count":6,"open_issues_count":1,"forks_count":5,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-03-29T09:46:12.905Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openSVM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-05T14:23:42.000Z","updated_at":"2025-01-21T02:19:25.000Z","dependencies_parsed_at":"2025-01-06T14:24:28.089Z","dependency_job_id":"55cf61ea-805f-41c2-a7ea-13dff925f499","html_url":"https://github.com/openSVM/dexscreener-mcp-server","commit_stats":null,"previous_names":["opensvm/dexscreener-mcp-server"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openSVM%2Fdexscreener-mcp-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openSVM%2Fdexscreener-mcp-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openSVM%2Fdexscreener-mcp-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openSVM%2Fdexscreener-mcp-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openSVM","download_url":"https://codeload.github.com/openSVM/dexscreener-mcp-server/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249731530,"owners_count":21317342,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-04T09:13:36.034Z","updated_at":"2025-04-19T15:56:41.912Z","avatar_url":"https://github.com/openSVM.png","language":"JavaScript","funding_links":[],"categories":["Finance \u0026 Fintech"],"sub_categories":["How to Submit"],"readme":"# DexScreener MCP Server\n\nAn MCP server implementation for accessing the DexScreener API, providing real-time access to DEX pair data, token information, and market statistics across multiple blockchains.\n\nOne-line install (automatically adds to Claude Desktop):\n```bash\ncurl -L https://raw.githubusercontent.com/opensvm/dexscreener-mcp-server/main/install.sh | bash\n```\n\n## Features\n\n- Rate-limited API access (respects DexScreener's rate limits)\n- Comprehensive error handling\n- Type-safe interfaces\n- Support for all DexScreener API endpoints\n- Integration tests\n\n## Installation\n\nManual installation:\n```bash\nnpm install\nnpm run build\nnpm run setup\n```\n\n## Testing\n\n```bash\nnpm test\n```\n\n## Usage\n\n### Available Tools\n\n1. `get_latest_token_profiles`\n   - Get the latest token profiles\n   - No parameters required\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_latest_token_profiles');\n   ```\n\n2. `get_latest_boosted_tokens`\n   - Get the latest boosted tokens\n   - No parameters required\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_latest_boosted_tokens');\n   ```\n\n3. `get_top_boosted_tokens`\n   - Get tokens with most active boosts\n   - No parameters required\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_top_boosted_tokens');\n   ```\n\n4. `get_token_orders`\n   - Check orders paid for a specific token\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_token_orders', {\n     chainId: 'solana',\n     tokenAddress: 'So11111111111111111111111111111111111111112'\n   });\n   ```\n\n5. `get_pairs_by_chain_and_address`\n   - Get one or multiple pairs by chain and pair address\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_pairs_by_chain_and_address', {\n     chainId: 'solana',\n     pairId: 'HxFLKUAmAMLz1jtT3hbvCMELwH5H9tpM2QugP8sKyfhc'\n   });\n   ```\n\n6. `get_pairs_by_token_addresses`\n   - Get one or multiple pairs by token address (max 30)\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'get_pairs_by_token_addresses', {\n     tokenAddresses: 'So11111111111111111111111111111111111111112'\n   });\n   ```\n\n7. `search_pairs`\n   - Search for pairs matching query\n   ```typescript\n   const result = await mcpClient.callTool('dexscreener', 'search_pairs', {\n     query: 'SOL'\n   });\n   ```\n\n## Rate Limits\n\nThe server implements rate limiting to comply with DexScreener's API limits:\n- Token Profile/Boost endpoints: 60 requests per minute\n- DEX/Pairs endpoints: 300 requests per minute\n\n## Error Handling\n\nThe server handles various error scenarios:\n- Rate limit exceeded\n- Invalid parameters\n- Network errors\n- API errors\n\nErrors are returned in a standardized format with appropriate error codes and messages.\n\n## API Documentation\n\nFor detailed API documentation, see [docs/api-reference.md](docs/api-reference.md).\n\n## Development\n\n### Project Structure\n\n```\n.\n├── src/\n│   ├── types/           # TypeScript interfaces and types\n│   ├── services/        # API service implementations\n│   ├── tests/           # Integration tests\n│   └── index.ts         # Main server implementation\n├── scripts/            # Setup and utility scripts\n├── docs/              # Documentation\n└── README.md          # This file\n```\n\n### Adding New Features\n\n1. Define types in `src/types/`\n2. Implement service methods in `src/services/`\n3. Add tool handlers in `src/index.ts`\n4. Update documentation\n5. Add tests\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensvm%2Fdexscreener-mcp-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensvm%2Fdexscreener-mcp-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensvm%2Fdexscreener-mcp-server/lists"}