data·vault_
← Catalog

claude desktop config, three servers

MCP tools for Claude

Our three MCP servers, wired for Claude Desktop. dataset-mcp queries 149,673 rows of NFL, rent, Airbnb, and bounty data. earn-bounty-scanner reads the live Superteam Earn feed. solana-research-library answers from a 25-platform Solana earning-rail database. All three are MIT-licensed, run locally over stdio, and need no API key. Every claude_desktop_config.json snippet below is copied from the server's README, and every MCP registry entry read active on 2026-09-10.

The three servers

mcp

dataset-mcp: five tools over the dataset catalog

The server behind this catalog. Five tools: list_datasets, get_dataset_info, get_sample, query_dataset, and get_stats. query_dataset filters and paginates the full released files (149,673 rows across five datasets), 100 rows per call, with =, contains, gt, and lt operators. get_stats returns row counts, numeric min/max/mean, and top-N frequencies. Files download once from a public GitHub release into ~/.cache/dataset-mcp/ and are re-verified against SHA-256 on every load.

The README's config for claude_desktop_config.json, plain form (npm 10 and 11):

{
  "mcpServers": {
    "dataset-mcp": {
      "command": "npx",
      "args": ["-y", "github:jayjex/dataset-mcp"]
    }
  }
}

npm 12 refuses git-based installs (EALLOWGIT), so the README also ships the flag-carrying form:

{
  "mcpServers": {
    "dataset-mcp": {
      "command": "npx",
      "args": ["--allow-git=all", "-y", "github:jayjex/dataset-mcp"]
    }
  }
}

Registry: io.github.jayjex/dataset-mcp, version 1.1.0, active. Repo: github.com/jayjex/dataset-mcp. Full tool docs with a captured session: MCP server for datasets.

mcp

earn-bounty-scanner: three tools over the live Earn feed

Reads superteam.fun at call time, so rewards and deadlines are current. search_bounties(query) matches keywords and returns the full bounty description text, not a teaser. get_bounty(id) pulls one listing's complete details. recent_bounties() lists currently OPEN bounties, newest first. Every response carries agentAccess: AGENT_ALLOWED means an agent may submit, HUMAN_ONLY means bot submitters are barred.

The README's config for claude_desktop_config.json:

{
  "mcpServers": {
    "earn-bounty-scanner": {
      "command": "npx",
      "args": ["-y", "earn-bounty-scanner"]
    }
  }
}

That entry expects the npm package, which is not on the registry yet. Until it ships, build from the repo (git clone, npm install, npm run build) and point the config at the local build, the same shape our other READMEs use:

{
  "mcpServers": {
    "earn-bounty-scanner": {
      "command": "node",
      "args": ["/absolute/path/to/earn-bounty-scanner/dist/index.js"]
    }
  }
}

Registry: io.github.jayjex/earn-bounty-scanner, version 1.0.0, active. Repo: github.com/jayjex/earn-bounty-scanner.

mcp

solana-research-library: four tools over a Solana research database

25 Solana and web3 earning platforms, each field-probed with a verdict (LIVE-RAIL, USER-GATED, CONDITIONAL-PASS, WATCHLIST, DEAD), the exact payout rail, and the KYC gate. Four tools: list_topics, get_topic, search_topics, and stats. The database ships inside the package, so tools answer instantly and an upstream outage cannot fail a call.

The README's config for claude_desktop_config.json:

{
  "mcpServers": {
    "solana-research-library": {
      "command": "node",
      "args": ["/absolute/path/to/solana-research-library/dist/index.js"]
    }
  }
}

dist/ is committed to the repo, so after git clone and npm install the path above exists even before a build.

Registry: io.github.jayjex/solana-research-library, version 1.0.0, active. Repo: github.com/jayjex/solana-research-library.

The official MCP registry

All three are listed in the official registry at registry.modelcontextprotocol.io, which answers search queries over HTTP: /v0.1/servers?search=io.github.jayjex. All three names read active on 2026-09-10.

Registry nameVersionStatus
io.github.jayjex/dataset-mcp1.1.0active
io.github.jayjex/earn-bounty-scanner1.0.0active
io.github.jayjex/solana-research-library1.0.0active

A fourth entry, io.github.jayjex/earn-dataset-mcp, is the earlier 28-listing snapshot server that dataset-mcp superseded.

What was checked on 2026-09-10

A tools/list handshake over stdio JSON-RPC came back with 5, 3, and 4 tools for dataset-mcp, earn-bounty-scanner, and solana-research-library respectively. The registry search returned all three names active. All three repo URLs answered HTTP 200.

Where to go next

The MCP tools list indexes all 12 tools with real output captured over JSON-RPC. The MCP server for Claude Desktop guide walks through the dataset-mcp install step by step, with troubleshooting, and the Claude Desktop MCP setup page is a five-step version of the same install: config file paths, restart, tools menu, first query. Deeper docs: the dataset-mcp server page, the agent endpoint docs, and the free tools for AI agents roundup.