get-token-info
Retrieve detailed information about a Pump.fun token by entering its mint address using the tool on the Pump.fun MCP Server. Simplify token data access for Solana-based assets.
Instructions
Get information about a Pump.fun token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tokenAddress | Yes | The token's mint address |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"tokenAddress": {
"description": "The token's mint address",
"type": "string"
}
},
"required": [
"tokenAddress"
],
"type": "object"
}