DexScreener MCP Server
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
DexScreener MCP Server
An MCP server implementation for accessing the DexScreener API, providing real-time access to DEX pair data, token information, and market statistics across multiple blockchains.
One-line install (automatically adds to Claude Desktop):
Features
- Rate-limited API access (respects DexScreener's rate limits)
- Comprehensive error handling
- Type-safe interfaces
- Support for all DexScreener API endpoints
- Integration tests
Installation
Manual installation:
Testing
Usage
Available Tools
get_latest_token_profiles
- Get the latest token profiles
- No parameters required
Copyget_latest_boosted_tokens
- Get the latest boosted tokens
- No parameters required
Copyget_top_boosted_tokens
- Get tokens with most active boosts
- No parameters required
Copyget_token_orders
- Check orders paid for a specific token
Copyget_pairs_by_chain_and_address
- Get one or multiple pairs by chain and pair address
Copyget_pairs_by_token_addresses
- Get one or multiple pairs by token address (max 30)
Copysearch_pairs
- Search for pairs matching query
Copy
Rate Limits
The server implements rate limiting to comply with DexScreener's API limits:
- Token Profile/Boost endpoints: 60 requests per minute
- DEX/Pairs endpoints: 300 requests per minute
Error Handling
The server handles various error scenarios:
- Rate limit exceeded
- Invalid parameters
- Network errors
- API errors
Errors are returned in a standardized format with appropriate error codes and messages.
API Documentation
For detailed API documentation, see docs/api-reference.md.
Development
Project Structure
Adding New Features
- Define types in
src/types/
- Implement service methods in
src/services/
- Add tool handlers in
src/index.ts
- Update documentation
- Add tests
License
MIT
You must be authenticated.
An MCP server implementation that enables access to DexScreener API data, providing real-time information on DEX pairs, token profiles, and market statistics across multiple blockchains.