latest_token_profiles
Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp
Newest token profiles created (cross-chain).
Example call
curl -X POST https://gateway.pipeworx.io/dexscreener/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"latest_token_profiles","arguments":{}}}'
Response shape
| Field | Type | Description |
|---|---|---|
schemaVersion | string | API schema version |
profiles | array | Latest token profiles |
Full JSON Schema
{
"type": "object",
"description": "Newest token profiles created cross-chain",
"properties": {
"schemaVersion": {
"type": "string",
"description": "API schema version"
},
"profiles": {
"type": "array",
"description": "Latest token profiles",
"items": {
"type": "object",
"properties": {
"chainId": {
"type": "string",
"description": "Chain identifier"
},
"tokenAddress": {
"type": "string",
"description": "Token contract address"
},
"url": {
"type": "string",
"description": "Profile URL"
},
"description": {
"type": [
"string",
"null"
]
},
"socials": {
"type": [
"array",
"null"
]
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"dexscreener": {
"url": "https://gateway.pipeworx.io/dexscreener/mcp"
}
}
}
See Getting Started for client-specific install steps.