search-source
Search for token-specific data across platforms like Dune, IQ Wiki, and news sources using token name and ticker symbol, enabling focused Web3 research directly from the MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | Yes | Source to search (e.g., 'Dune', 'IQ Wiki', 'News') | |
tokenName | Yes | Name of the token | |
tokenTicker | Yes | Ticker symbol of the token |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"source": {
"description": "Source to search (e.g., 'Dune', 'IQ Wiki', 'News')",
"type": "string"
},
"tokenName": {
"description": "Name of the token",
"type": "string"
},
"tokenTicker": {
"description": "Ticker symbol of the token",
"type": "string"
}
},
"required": [
"tokenName",
"tokenTicker",
"source"
],
"type": "object"
}