← dogdata.xyz

INDIVIDUAL MCP TOOL

get_dog_price

Get the current DOG token price from Kraken exchange.

dogdata.xyznone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name, description or schema mentions credentials.

Parent endpoint

dogdata.xyz

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.dogdata-xyz]
url = "https://www.dogdata.xyz/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "dogdata-xyz": {
      "type": "http",
      "url": "https://www.dogdata.xyz/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: dogdata-xyz
Remote MCP URL: https://www.dogdata.xyz/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "dogdata-xyz": {
      "url": "https://www.dogdata.xyz/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "dogdata-xyz": {
      "type": "http",
      "url": "https://www.dogdata.xyz/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "dogdata-xyz",
  "transport": "streamable-http",
  "url": "https://www.dogdata.xyz/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • get_dog_holders — Get paginated list of DOG token holders with their balances and UTXO counts.
  • search_holder — Search for a specific DOG holder by Bitcoin address.
  • get_recent_transactions — Get recent DOG token transactions from the live transaction feed.
  • search_transaction — Search for a specific DOG transaction by transaction ID (txid).
  • get_solana_dex_prices — Get DOG token prices from all 4 Solana DEXes: Orca (Whirlpool), Raydium, Meteora, and Jupiter.
  • get_multi_exchange_prices — Get DOG token prices across multiple exchanges via CoinGecko tickers.
  • get_onchain_metrics — Get on-chain metrics for DOG token including total holders, total UTXOs, concentration metrics (Gini, top 10/100/1000 supply share), and UTXO age / HODL-wave distribution.
  • get_metrics_history — Get historical time-series metrics for DOG token (holders, UTXOs, or price) from the persisted Supabase snapshots, downsampled to the requested window.