# Token Metrics — Pipedream Connect

> Discover Hidden 100x Cryptocurrencies with Advanced AI Insights.

- API slug: `token_metrics` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Data Analytics
- Website: https://www.tokenmetrics.com/
- This page (HTML): https://pipedream.com/apps/token-metrics
- Tools: 25 actions · 0 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: token_metrics`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "token_metrics",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Get AI Reports:
const result = await mcp.callTool({
  name: "token_metrics-get-ai-reports",
  arguments: {
    tokenId: ["Token IDs"],
    tokenName: ["Token Names"],
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Token Metrics endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.tokenmetrics.com/v2/tokens

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkudG9rZW5tZXRyaWNzLmNvbS92Mi90b2tlbnM?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "token_metrics-get-ai-reports",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    token_metrics: { authProvisionId: "apn_xxxxxxx" },
    tokenId: ["Token IDs"],
    tokenName: ["Token Names"],
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (25)

### `token_metrics-get-ai-reports` — Get AI Reports (Read-only)

Retrieve AI-generated reports providing comprehensive analyses of cryptocurrency tokens, including deep dives, investment analyses, and code reviews. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-ai-reports.md

### `token_metrics-get-correlation` — Get Correlation (Read-only)

Get the Top 10 and Bottom 10 correlation of tokens with the top 100 market cap tokens. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-correlation.md

### `token_metrics-get-crypto-investors` — Get Crypto Investors (Read-only)

Get the latest list of crypto investors and their scores. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-crypto-investors.md

### `token_metrics-get-daily-ohlcv` — Get Daily OHLCV (Write)

Get daily OHLCV (open, high, low, close, volume) data for tokens. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-daily-ohlcv.md

### `token_metrics-get-fundamental-grades` — Get Fundamental Grades (Read-only)

Get the latest Fundamental Grade insights for a token, including grade class, community score, exchange score, VC score, tokenomics score, and DeFi scanner score. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-fundamental-grades.md

### `token_metrics-get-fundamental-grades-historical` — Get Fundamental Grades Historical (Read-only)

Get historical Fundamental Grade insights for a token, including grade class, community score, exchange score, VC score, tokenomics score, and DeFi scanner score over time. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-fundamental-grades-historical.md

### `token_metrics-get-hourly-ohlcv` — Get Hourly OHLCV (Write)

Get hourly OHLCV (open, high, low, close, volume) data for tokens. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-hourly-ohlcv.md

### `token_metrics-get-hourly-trading-signals` — Get Hourly Trading Signals (Read-only)

Get the hourly AI generated trading signals for long and short positions for all tokens. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-hourly-trading-signals.md

### `token_metrics-get-indices` — Get Indices (Read-only)

Get active and passive crypto indices with performance and market data. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-indices.md

### `token_metrics-get-indices-holdings` — Get Indices Holdings (Write)

This endpoint returns the current holdings of the given Index, along with their respective weight in %. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-indices-holdings.md

### `token_metrics-get-indices-performance` — Get Indices Performance (Write)

The Indices Performance endpoint provides historical performance data for a given index, including cumulative return on investment (ROI) over time. This data is useful for analyzing index trends and evaluating investment performance. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-indices-performance.md

### `token_metrics-get-market-metrics` — Get Market Metrics (Read-only)

Get the Market Analytics from Token Metrics. They provide insight into the full Crypto Market, including the Bullish/Bearish Market indicator. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-market-metrics.md

### `token_metrics-get-moonshot-tokens` — Get Moonshot Tokens (Read-only)

Get the AI-curated token picks (Moonshots) with high breakout potential based on grades, sentiment, volume, and on-chain data to help users trade smarter and faster. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-moonshot-tokens.md

### `token_metrics-get-price` — Get Price (Read-only)

Get token prices based on the provided token ids. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-price.md

### `token_metrics-get-price-prediction` — Get Price Prediction (Read-only)

Get price prediction of a crypto asset under different market cap scenarios. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-price-prediction.md

### `token_metrics-get-quantmetrics` — Get Quantmetrics (Read-only)

Get the latest quantitative metrics for tokens. Note that Token Metrics pricing data starts on 2019-01-01 for most tokens. More historical data will be available soon. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-quantmetrics.md

### `token_metrics-get-resistance-support` — Get Resistance & Support (Read-only)

Get the historical levels of resistance and support for each token. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-resistance-support.md

### `token_metrics-get-scenario-analysis` — Get Scenario Analysis (Write)

Get the price prediction based on different Crypto Market scenario. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-scenario-analysis.md

### `token_metrics-get-technology-grades` — Get Technology Grades (Read-only)

Get Technology Grade insights for a token, including activity score, security score, repository score, collaboration score, and DeFi scanner score. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-technology-grades.md

### `token_metrics-get-technology-grades-historical` — Get Technology Grades Historical (Read-only)

Get historical Technology Grade data for a token, including activity score, security score, repository score, collaboration score, and DeFi scanner score over time. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-technology-grades-historical.md

### `token_metrics-get-tm-grades` — Get TM Grades (Read-only)

Get the latest TM Grade for a token, including trader grade change, quant grade, signals, momentum, and 24-hour percentage changes for both TM Grade and Trader Grade. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-tm-grades.md

### `token_metrics-get-tm-grades-historical` — Get TM Grades Historical (Read-only)

Get historical TM Grade data for a token, including trader grade change, quant grade, signals, momentum, and 24-hour percentage changes for both TM Grade and Trader Grade over time. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-tm-grades-historical.md

### `token_metrics-get-tokens` — Get Tokens (Read-only)

Get the list of coins and their associated TOKEN_ID supported by Token Metrics, along with key market data such as contract address, current price, market cap, trading volume, supply metrics, and 24-hour price change. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-tokens.md

### `token_metrics-get-top-market-cap-tokens` — Get Top Market Cap Tokens (Read-only)

Get the list of coins for top market cap. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-top-market-cap-tokens.md

### `token_metrics-get-trading-signals` — Get Trading Signals (Read-only)

Get the AI generated trading signals for long and short positions for all tokens. See the documentation

Full schema: https://pipedream.com/apps/token-metrics/actions/get-trading-signals.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
