cyanheads-mcp-server
OfficialProvides tools to search and retrieve research papers from arXiv, enabling access to scholarly articles across various scientific disciplines.
Provides geocoding and location data services from OpenStreetMap, allowing conversion of addresses to coordinates and reverse geocoding.
Provides tools to search and access researcher profiles and works from ORCID, facilitating interaction with researcher identity data.
Provides tools to query and access structured data from Wikidata, enabling retrieval of entity information and relationships.
Provides tools to search and retrieve encyclopedia content from Wikipedia, enabling access to articles, summaries, and links.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cyanheads-mcp-serverfind tools for tracking earthquakes"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Public Hosted Server: https://cyanheads.caseyjhand.com/mcp
Tools
Two tools, semantic ranking, hosted catalog. The catalog itself lives at caseyjhand.com/fleet.json — a single JSON file with baked embeddings, regenerated when servers are added or updated. This server polls it hourly and serves search out of an in-memory vector index.
Tool | Description |
| Search fleet tools and servers by natural-language query. Returns ranked matches with brief summaries and the owning server. |
| Return the connection URL and per-client install snippets for a named tool or server. |
cyanheads_search_catalog
Semantic search across the fleet. Embeds the query with Snowflake Arctic Embed M v1.5 (Matryoshka-truncated to 256 dimensions) and computes cosine similarity against the catalog's pre-computed document vectors.
queryaccepts 1-500 charactersscope: "tools"(default) returns individual tool matches;scope: "servers"returns server-level matchescategoryfilter narrows to one ofresearch,government,public-data,utilityConfigurable
limit(1-20, default 5) and a server-sideSIMILARITY_FLOORthreshold drop low-confidence hitsReturns
score(cosine similarity in [0, 1]) on every result for trust calibrationtotalCountreports the count above the floor before the limit was applied
cyanheads_describe_entry
Resolve a name to its install instructions. Accepts either a tool name (snake_case, e.g. earthquake_search) or a server name (kebab-case, e.g. earthquake-mcp-server), up to 64 characters — auto-detected from the format, or pinned via the kind parameter.
For tools: returns the description and the owning server name
For servers: returns description, version, npm package, GitHub URL, the full tool list (each tool's name and description), and per-client install snippets — local (stdio, via
npx) for every server, plus remote (Streamable HTTP) when a hosted endpoint existsEach snippet carries a
transport(stdioorhttp); env vars a local install needs are surfaced and scaffolded into the JSON configsclientfilter narrows snippets to one ofclaude-code,codex,cursor,gemini,streamable-http,curl; omit to return every clientDiscriminated output on
kind— callers branch on data, not string parsing
Related MCP server: mcp-server-mcpindex
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling with typed error contracts and recovery hints
Pluggable auth (
none,jwt,oauth)Structured logging with optional OpenTelemetry tracing
Runs locally (stdio/HTTP) or on Cloudflare Workers from the same codebase
Fleet-specific:
Hourly background catalog refresh with atomic swap on
generatedAtchange — no restart needed when the fleet updatesL2-normalized 256-dim Matryoshka-truncated vectors keep memory under 100KB for a 40-server fleet
Per-client install snippet generation at describe-time, not catalog-generation time — both local (stdio
npx) and remote (Streamable HTTP) transports, kept in sync with the deployed endpointDiscriminated
result.kindand typedinstallSnippets[].client/installSnippets[].transportenums — agents can branch reliably
What's in the fleet
100+ MCP servers spanning four categories. Each is open source and individually addressable — cyanheads_describe_entry returns its direct connection URL alongside the install snippet. It also describes this server: ask for cyanheads-mcp-server and you get the front door's own endpoint and install snippets.
Category | Examples |
Research | arXiv, bioRxiv, ORCID, Crossref, Wikipedia, Wikidata, OpenLibrary |
Government | OpenStates, USAspending, CourtListener, NIST NVD, Library of Congress |
Public Data | Earthquake (USGS), NOAA Weather, GBIF Biodiversity, World Bank, WHO, Eurostat |
Utility | OpenStreetMap geocoding, Reference Data (constants, timezones, units), WSDOT |
Getting started
Public Hosted Instance
A public instance is available at https://cyanheads.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:
{
"mcpServers": {
"cyanheads-mcp-server": {
"type": "streamable-http",
"url": "https://cyanheads.caseyjhand.com/mcp"
}
}
}For Claude Code:
claude mcp add --transport http cyanheads https://cyanheads.caseyjhand.com/mcpSelf-Hosted / Local
Add the following to your MCP client configuration file.
{
"mcpServers": {
"cyanheads-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/cyanheads-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"cyanheads-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/cyanheads-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}Or with Docker:
{
"mcpServers": {
"cyanheads-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/cyanheads-mcp-server:latest"]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.0 or higher (or Node.js v24+).
Installation
Clone the repository:
git clone https://github.com/cyanheads/cyanheads-mcp-server.gitNavigate into the directory:
cd cyanheads-mcp-serverInstall dependencies:
bun installConfiguration
All configuration is validated at startup via Zod schemas in src/config/server-config.ts. Every variable has a sensible default — out of the box, the server points at the canonical cyanheads fleet.
Variable | Description | Default |
| Transport: |
|
| HTTP server port |
|
| HTTP server bind host |
|
| HTTP endpoint path where the MCP server is mounted |
|
| Authentication: |
|
| Log level ( |
|
| Remote fleet.json endpoint (schema v2 with baked embeddings). Must be an absolute URL. Override to front your own fleet. |
|
| Per-request timeout for fleet.json fetches in ms. Must be > 0. |
|
| Background poll interval for fleet.json refresh. |
|
| Hugging Face model id for query embedding. Must match |
|
| Cosine similarity cutoff for |
|
| Enable OpenTelemetry |
|
To point at a different catalog, change CATALOG_URL to your own hosted JSON file. See docs/design.md for the producer-side script and schema.
Running the server
Local development
Build and run the production version:
# One-time build bun run rebuild # Run the built server bun run start:http # or bun run start:stdioRun checks and tests:
bun run devcheck # Lints, formats, type-checks, runs MCP and packaging linters bun run test # Runs the test suite
Project structure
Directory | Purpose |
| Tool definitions ( |
| Catalog service — remote fleet.json provider with atomic-swap refresh, vector index, snippet builders, the self-description fallback record, and the query-time embedding runtime ( |
| Server-specific environment variable parsing and validation with Zod. |
| Unit and integration tests, mirroring the |
| Design doc and schema reference. |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor logging,ctx.statefor storageRegister new tools in the
toolsarray passed tocreateApp()insrc/index.ts
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
This project is licensed under the Apache 2.0 License. See the LICENSE file for details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceMCP of MCPs. Automatic discovery and configure MCP servers on your local machine. Integration with Claude and Cursor.Last updated53Apache 2.0

mcp-server-mcpindexofficial
AlicenseAqualityBmaintenanceEnables agents to discover, compare, and install other MCP servers using natural language tasks, backed by a searchable index of thousands of servers.Last updated61,000MIT- Alicense-qualityBmaintenanceAI-first MCP server discovery tool that enables agents to search, inspect, and install MCP servers from multiple registries.Last updated12AGPL 3.0
- Alicense-qualityDmaintenanceSelf-hosted documentation and code indexing with MCP integration.Last updated17MIT
Related MCP Connectors
Search your AI chat history (ChatGPT, Claude, Codex) from any MCP client. Remote, private, read-only
Discover and recommend retriever MCP servers. Includes top picks and install config tools.
Search Hacker News, Bluesky, and Substack from a single MCP interface
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cyanheads/cyanheads-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server