Saylor Innovations: pay-per-call data

180+ pay-per-call data APIs via x402, no API key: research, law, medical, security, markets, crypto.

Should I use this

Quality & Safety

A
Description quality
97%
Schema completeness
90%
Naming quality
99%
Poisoning risk
60%
Permission match
100%
Protocol compliance
100%

Findings (5)

  • HIGHTool poisoning patterns detected
  • MEDIUMTool description contains URL to non-standard domainin check_token_security
  • MEDIUMTool description contains URL to non-standard domainin check_token_holders
  • LOWTool 'get_trending_pools' description lacks action verbin get_trending_pools
  • LOWTool 'check_wallet' description lacks action verbin check_wallet

Based on automated analysis of tool definitions and protocol compliance.

Context Cost

~3,740Tokens (tool definitions)
~522 BTypical response size
Significant attention impact (2.92% of 128k context)

This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.

Install

One-Click Install

Add this to your `claude_desktop_config.json` file:

{
  "mcpServers": {
    "data": {
      "url": "https://saylorinnovations.com/mcp"
    }
  }
}

Remote endpoints

https://saylorinnovations.com/mcpstreamable-http

What it can do

Tool inventory

Tools (27)

🟢 Read-only🟡 Write🔴 Delete⚪ Unknown
🟢get_doi_report(doi)

Resolve a DOI into normalized publication metadata, citation text, identifiers and source links. Abstracts and full paper text are excluded. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "doi": {
      "type": "string",
      "description": "DOI identifier, optionally prefixed with https://doi.org/."
    }
  },
  "required": [
    "doi"
  ]
}
🟢get_package_report(name)

Inspect the latest npm package release: version, license, dependency counts, engine requirements, deprecation notice and source links. Does not download or execute package code. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Public npm package name, including @scope/name where applicable."
    }
  },
  "required": [
    "name"
  ]
}
🟢get_papers_report(q)

Find up to five publications with DOI identifiers, authors, publication years and citation counts. Returns metadata, not abstracts or full text. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "Search terms, 2–160 characters."
    }
  },
  "required": [
    "q"
  ]
}
🟢get_npmsearch_report(q)

Find up to five npm packages with versions, descriptions, registry ranking scores and source links for package discovery. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "q": {
      "type": "string",
      "description": "Search terms, 2–160 characters."
    }
  },
  "required": [
    "q"
  ]
}
🟢get_python_report(name)

Inspect a Python package’s latest release, Python compatibility, declared dependencies, license metadata and PyPI-reported advisories. No code execution. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Public Python package name."
    }
  },
  "required": [
    "name"
  ]
}
🟢get_cve_report(cve)

Resolve a CVE into its published description, status, CVSS metrics, weakness identifiers and vendor/reference links. This does not scan a system or prove safety. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "cve": {
      "type": "string",
      "description": "CVE identifier, for example CVE-2021-44228."
    }
  },
  "required": [
    "cve"
  ]
}
🟢get_fx_report(base)

Get daily reference exchange rates per one unit of a base currency, with observation date and currency codes. Not executable trading quotes. ECB source data is also available free from ecb.europa.eu. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "base": {
      "type": "string",
      "description": "Three-letter currency code supported by the ECB reference-rate feed, for example USD or EUR."
    }
  },
  "required": [
    "base"
  ]
}
🟢get_country_report(country)

Resolve a two-letter country code into its World Bank name, region, capital, income group and lending classification for data enrichment. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "Two-letter country code supported by World Bank, for example US or GB. Aggregates are excluded."
    }
  },
  "required": [
    "country"
  ]
}
🟢get_economy_report(country)

Get up to five recent annual observations for population, GDP in current US dollars and consumer-price inflation. Includes years, units, source links and missing values. Costs $0.003. Returns payment instructions for the Saylor endpoint; no provider account required.

Input Schema

{
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "Two-letter country code supported by World Bank, for example US or GB. Aggregates are excluded."
    }
  },
  "required": [
    "country"
  ]
}
🟢verify_repository(repository, ref, task, packageManager, timeoutSeconds)

Clone a public GitHub repository into a disposable Firecracker microVM, install dependencies, run one declared test, lint, or build script, and return structured logs plus the resolved commit. The service verifies execution, not semantic correctness; private repositories and arbitrary shell commands are not accepted. Costs $0.25 per attempt. Returns the paid HTTP endpoint and x402 instructions.

Input Schema

{
  "type": "object",
  "properties": {
    "repository": {
      "type": "string",
      "format": "uri",
      "description": "Public GitHub HTTPS repository URL."
    },
    "ref": {
      "type": "string",
      "description": "Optional branch or tag to verify."
    },
    "task": {
      "type": "string",
      "enum": [
        "test",
        "lint",
        "build"
      ],
      "description": "Bounded package script to run."
    },
    "packageManager": {
      "type": "string",
      "enum": [
        "auto",
        "npm"
      ],
      "default": "auto",
      "description": "Version 0.1 supports npm projects; auto selects npm."
    },
    "timeoutSeconds": {
      "type": "integer",
      "minimum": 15,
      "maximum": 120,
      "default": 60
    }
  },
  "required": [
    "repository",
    "task"
  ],
  "additionalProperties": false
}
🟢search_endpoints(query, limit)

Search the full Saylor catalog of 240+ pay-per-call data endpoints (x402, no account or API key): Solana token rug risk and holder concentration, token prices on 25 chains, ERC-20 balances, academic papers, U.S. case law/statutes/regulations, medical and HCPCS codes, drug facts, protein function (UniProt), AlphaFold and PDB structures, ClinVar variant significance, Reactome pathways, rare diseases (Orphanet), CVE/exploit intel, Polymarket/Kalshi odds, perp funding rates, stocks and SEC data, web page to markdown, sanctions screening, dictionary, chemistry, books, Bible/Quran, live aircraft, museum art, crypto token/wallet/DeFi data and more. Free. Returns url, example call, a free sample response URL, price and description; then call get_endpoint for payment details.

Input Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "What you need, e.g. \"icd-10 code\", \"case law\", \"token price\", \"arxiv\"."
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 50
    }
  },
  "required": [
    "query"
  ]
}
🟢get_endpoint(url)

Given an endpoint URL from search_endpoints (with its parameters filled in), returns the exact resource URL, price and x402 payment instructions. The agent then pays over HTTP and receives the data. Free.

Input Schema

{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full https://saylorinnovations.com/api/... URL including query parameters."
    }
  },
  "required": [
    "url"
  ]
}
🟢list_data_endpoints

Everything buyable from this server: live Solana token, wallet, launch and market data, with prices and how to pay. Free — call this first to see what exists.

Input Schema

{
  "type": "object",
  "properties": {}
}
🟢check_token_security(mint)

Solana token rug risk check — is this token safe to buy? Mint and freeze authority, LP locked %, top-10 holder concentration, RugCheck named risks, a 0-100 security score and a plain-English summary. Free sample: https://saylorinnovations.com/api/sample/security. Costs $0.01. Returns the payment requirements and the URL to call once paid — an LLM cannot produce this from training data.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    }
  },
  "required": [
    "mint"
  ]
}
🟢check_token_price(mint)

Fast price and liquidity for a Solana token from two independent sources, with the spread between them reported — a wide spread is itself a signal. Costs $0.001, the cheapest endpoint here, built for polling.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    }
  },
  "required": [
    "mint"
  ]
}
🟢get_token_snapshot(mint)

Complete Watchdog snapshot for a Solana token in one call: price, liquidity, holders, pairs, socials, security flags, and the security/liquidity/momentum/composite scores. Costs $0.005.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    }
  },
  "required": [
    "mint"
  ]
}
🟢check_token_narrative(mint)

Which meme/narrative category a token fits — ai, dog, cat, political, gaming, defi, infrastructure, frog, food, or memecoin — plus its socials. Costs $0.005.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    }
  },
  "required": [
    "mint"
  ]
}
🟢check_token_holders(mint)

Check holder concentration: top 20 holders by balance for a Solana token, with percent of supply and RugCheck's own insider label per wallet — deeper than the rolled-up top-10 percentage in check_token_security. Free sample: https://saylorinnovations.com/api/sample/holders. Costs $0.01.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    }
  },
  "required": [
    "mint"
  ]
}
🟢get_price_history(mint, timeframe, limit)

OHLCV candles for a Solana token from its highest-liquidity pool — the only time-series data in this catalog; every other endpoint is a point-in-time snapshot. Costs $0.01.

Input Schema

{
  "type": "object",
  "properties": {
    "mint": {
      "type": "string",
      "description": "Solana mint address (base58)."
    },
    "timeframe": {
      "type": "string",
      "enum": [
        "day",
        "hour",
        "minute"
      ],
      "description": "Default hour."
    },
    "limit": {
      "type": "integer",
      "description": "Max candles returned. Default 100, max 500."
    }
  },
  "required": [
    "mint"
  ]
}
🟢compare_tokens(mints)

Watchdog scores for 2-10 Solana tokens side by side in one request. Priced per mint at $0.0015 — cheaper per mint than get_token_snapshot since the payload is lighter. Good for screening a watchlist in one call instead of one call per token.

Input Schema

{
  "type": "object",
  "properties": {
    "mints": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "minItems": 2,
      "maxItems": 10,
      "description": "Solana mint addresses (base58), 2 to 10 of them."
    }
  },
  "required": [
    "mints"
  ]
}
🟢get_trending_pools(limit)

Currently trending Solana pools with price, liquidity, volume and 24h change. Costs $0.01.

Input Schema

{
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Max 50."
    }
  }
}
🟢get_recent_launches(minLiquidity, maxAgeMinutes)

Brand-new Solana pools, typically seconds to minutes old — the most perishable data here. Age, liquidity, buy/sell flow and conservative risk flags. Costs $0.005.

Input Schema

{
  "type": "object",
  "properties": {
    "minLiquidity": {
      "type": "integer",
      "description": "Filter out pools below this USD liquidity."
    },
    "maxAgeMinutes": {
      "type": "integer",
      "description": "Only pools younger than this."
    }
  }
}
🟢check_wallet(address)

On-chain profile for a Solana wallet: SOL balance, token positions, recent activity, sampled age, failed-transaction rate and behavioural flags. Costs $0.01.

Input Schema

{
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Solana wallet address (base58)."
    }
  },
  "required": [
    "address"
  ]
}
🟢search_guides(query, category, tag, free_only, limit)

Search Saylor Innovations technical guides (crypto safety, DNS/domains, Linux, IoT/hardware, mining, web scraping, content growth). Free — no payment. Returns metadata only, never bodies.

Input Schema

{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Free-text search over title, tags, category, summary."
    },
    "category": {
      "type": "string",
      "enum": [
        "AI & Agents",
        "Business & Operations",
        "Content & Growth",
        "Crypto Basics",
        "IoT & Hardware",
        "Linux & Systems",
        "On-chain & DeFi",
        "Security & OpSec",
        "Self-Hosting & Infra",
        "Solana",
        "Wallets & Self-Custody",
        "Web & Domains"
      ]
    },
    "tag": {
      "type": "string",
      "description": "Comma-separated; all must match."
    },
    "free_only": {
      "type": "boolean",
      "description": "Only guides that cost nothing."
    },
    "limit": {
      "type": "integer",
      "default": 10,
      "maximum": 50
    }
  }
}
🟢get_guide(id)

Fetch a guide by id. Free guides return the full body immediately. Paid guides cost $0.01 in USDC/USDT/SOL on Solana or USDC on Base, Polygon or Arbitrum, via x402 — this returns the payment requirements rather than the body. Use the returned url with a PAYMENT-SIGNATURE header to complete payment.

Input Schema

{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Guide id, from search_guides."
    }
  },
  "required": [
    "id"
  ]
}
🟢list_bot_rentals

Trading bots available to rent for a fixed period, with prices and durations. The renter runs the bot themselves with their own exchange key or wallet — nothing is hosted and no credentials are sent to this server. Free to call. Note: no performance or profitability data exists for these bots, so none can be reported; automated trading risks total loss of the funded amount.

Input Schema

{
  "type": "object",
  "properties": {}
}
🟢list_categories

Every category and tag in the catalog, with counts. Free. One call reveals the whole shape.

Input Schema

{
  "type": "object",
  "properties": {}
}

Community

Rate this Server

Evidence

Recent observations

verifiedversion not recorded27 tools