latest_token_profiles

Pack: dexscreener · Endpoint: https://gateway.pipeworx.io/dexscreener/mcp

Newest token profiles created (cross-chain).

Example call

Arguments

{}

curl

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":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('latest_token_profiles', {});

Response shape

Always returns: profiles

FieldTypeDescription
profilesarrayToken profiles
Full JSON Schema
{
  "type": "object",
  "description": "Newest token profiles created (cross-chain)",
  "properties": {
    "profiles": {
      "type": "array",
      "description": "Token profiles",
      "items": {
        "type": "object",
        "properties": {
          "chainId": {
            "type": "string",
            "description": "Chain identifier"
          },
          "tokenAddress": {
            "type": "string",
            "description": "Token contract address"
          },
          "url": {
            "type": "string",
            "description": "DEX Screener token page"
          },
          "icon": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token icon URL"
          },
          "description": {
            "type": [
              "string",
              "null"
            ],
            "description": "Token description"
          },
          "links": {
            "type": "array",
            "description": "Project links (site, socials)",
            "items": {
              "type": "object"
            }
          }
        }
      }
    }
  },
  "required": [
    "profiles"
  ]
}

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.

Regenerated from source · build September 10, 2026