meta-data-mcp
Provides tools for fetching summaries from Wikipedia, enabling access to Wikipedia content programmatically.
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., "@meta-data-mcpfind earthquakes near Lisbon"
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.
meta-data-mcp
A single MCP server that transparently routes user requests to 83 open-data sources.
meta-data-mcp is one MCP server — not many. Under the hood it bundles 83 plugins, each wrapping a different open-data API. The plugins are an implementation detail; from your LLM's perspective there is one server and one place to ask "where can I find data about X?"
You install one server. You get all the data, discoverable through built-in routing tools.
Why "meta"?
Finding open data isn't the hard part — there's an absurd amount of it available. The hard part is finding the right dataset when you need it. meta-data-mcp makes that automatic:
The LLM calls
opendata.providers.find("FX rates", "court rulings", "earthquakes near Lisbon") and the server routes the query against an internal registry of every bundled plugin.The LLM then calls the matching tool directly. No setup step in between, no separate servers, no per-provider install rituals.
This project was forked from opendata-mcp and reshaped around the single-server idea once the catalogue passed a few dozen plugins.
Installation
You'll need uv (a Python package manager).
# macOS — install uv via Homebrew so MCP clients can find it
brew install uv
# Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"Then register the server with every MCP client installed on your machine:
uv run meta-data-mcp setupThe command auto-detects which MCP clients you have installed and adds one meta-data-mcp entry under mcpServers in each. Supported clients:
Client | Config file |
Claude Desktop |
|
Claude Code |
|
Cursor |
|
Windsurf |
|
Gemini CLI |
|
LM Studio |
|
Each existing config is backed up to <file>.bak before writing. Restart the affected client(s) and you'll see one new server with discovery tools available immediately; plugin tools can then be activated on demand.
Inspect what's detected / configured on your machine:
uv run meta-data-mcp clientsTarget a single client (or write to every supported client regardless of detection):
uv run meta-data-mcp setup --client claude-code
uv run meta-data-mcp setup --client allIf you want to see the JSON snippet without touching any config file (e.g. to paste into a client we don't support yet):
uv run meta-data-mcp setup --print-jsonWhen META_DATA_MCP_AUTH_TOKEN is set, --print-json also surfaces the SSE-client snippet (with the real token) to stderr so you can wire a remote client.
Hosting meta-data-mcp as a remote SSE server
For deploying behind your own domain with bearer-token authentication, see docs/hosting.md. It covers systemd, Caddy/nginx TLS termination, token rotation, and the threat model.
CLI
There is one server, so the CLI takes no "provider" argument. Every command operates on the one meta-data-mcp server.
Command | What it does |
| Run the server (default SSE; pass |
| Register the server in detected MCP client configs (or one target via |
| Unregister the server from detected MCP client configs (or one target via |
| Detect and remove legacy multi-server entries ( |
| Launch mcp-inspector against the server. |
| Informational: list the internal plugins bundled in this server. |
| Informational: show server overview. Pass |
| Print the package version. |
The list command exists for transparency about what's bundled — plugins are not separately installable, runnable, or addressable. They are loaded automatically when the server starts.
Server tools (what the LLM calls)
Once meta-data-mcp is running, the LLM has access to two layers of tools — and you don't need to mention either to the user:
Meta tools — the 13 server-level tools below. They make routing transparent: the LLM uses them to find, activate, and (if needed) create the right plugin without you telling it which tool to call.
Plugin tools — ~330 tools coming from the 83 bundled plugins. In the default discovery-only mode they are activated per provider at runtime (or preloaded via
META_DATA_MCP_PRELOAD). The LLM picks one after consulting the meta tools.
Meta tools
Tool | Purpose |
| Free-text search over the plugin registry. Returns ranked matches. When nothing matches the response carries a |
| Show the scoring breakdown for a search (useful for debugging routing decisions). |
| Enumerate the controlled domain vocabulary ( |
| Enumerate the controlled region vocabulary ( |
| Full metadata for one plugin by id — title, description, domains, regions, keywords, homepage, required env vars. |
| Paginated dump of the whole registry. |
| Activate one provider so its tools become callable in this session. |
| Remove an activated provider's tools from the current session catalog. |
| List currently active providers and the tool names each contributes. |
| Return per-provider health scores used by discovery health badges and routing context. |
| Build a validated plugin YAML spec from structured inputs. Takes id, base_url, tool definitions (name, endpoint, params), and registry metadata. Validates id/tool-name casing, path-placeholder/param consistency, and parameter types, then emits a YAML string ready to feed into |
| Autonomously create a new plugin. Takes a YAML spec (typically produced by |
| Proxy-call an activated plugin tool by name for environments that cannot directly invoke dynamically added tools. |
The autonomous discovery flow
The reason this server is called "meta" is that it routes data requests on the user's behalf — including by creating the route when one doesn't exist yet. The full flow:
User asks for data, e.g. "show me the most recent published CVEs."
LLM calls
opendata.providers.findwith the query (cve,vulnerability, …).If the registry has a match: the LLM activates the matching provider (
opendata.providers.activate, oractivate_topin find) and then calls the plugin tool.If the registry has no match: the response includes
no_match: trueand anext_stepfield that explains the autonomous creation path. The LLM:Tells the user it's about to add coverage for this data source.
Web-searches for an open API that exposes the requested data (e.g. the NVD or CIRCL CVE API).
Calls
opendata.plugins.draftwith the API's id, base URL, and structured tool definitions. The server validates the inputs (id casing, path-placeholder consistency, parameter types) and returns a YAML string.Passes that YAML to
opendata.plugins.create. The server materializes the plugin module + tests, imports the module, registers aProviderEntryin the in-memory dynamic registry, and merges the new tools into the running server's tool list.Calls the newly-available tool to answer the user's original question.
User gets their answer — and the plugin remains available for the rest of the session.
The materialized plugin lives on disk (meta_data_mcp/providers/{id}.py + tests/providers/test_{id}.py); contributors can clean it up, add it to meta_data_mcp/registry.py as a static entry, and open a PR so it becomes part of every shipped install.
Plugin tools
Every bundled plugin contributes its own tools under the one server. Their names are unique kebab-case identifiers, often using a provider-specific prefix (e.g. usgs-eq-feed-significant-week, frankfurter-latest, wikipedia-fetch-summary). The LLM discovers them through opendata.providers.find/opendata.providers.describe, activates the provider when needed, and can inspect session state with opendata.providers.list_active.
Presentation layer (MCP Apps)
v2.0 adds a visual layer on top of every tool result. Hosts that support the MCP Apps extension (Claude Desktop, MCP Inspector, others) render bound tool results inline as interactive panels in a sandboxed iframe instead of as JSON text. Hosts that don't speak MCP Apps fall back to the same JSON they always got — the binding is purely additive.
Each MCP-Apps-aware tool declares its panel via _meta.ui.resourceUri on the tool description. The host fetches the ui:// resource (HTML + bundled JS, single payload, no external requests besides explicitly-whitelisted CDNs) and dispatches bidirectional postMessage events between the iframe and itself.
Shape primitives — ui://meta-data-mcp/shape/<name>/v1
Three reusable bundles cover the common payload contracts. Any tool whose response matches one of these shapes binds to the corresponding primitive automatically and gets a rich renderer for free.
Shape | Renders | Payload contract | |
| Line chart + auto-computed profile (min/max/mean/stddev/gap-count) via Plotly. |
| |
| Leaflet map + marker cluster (with density layer for high-cardinality outputs). | `{features: GeoJSON | [{lat, lon, attrs}], layers?, facets?}` |
| Faceted, sortable, paginated HTML table + per-column auto-profile (type inference, top-k, null rate, range). |
|
Custom apps — ui://meta-data-mcp/app/<name>/v1
Some data shapes don't fit a generic primitive. v2.0 ships dedicated apps for them:
App | Drives | Visualization |
|
| Faceted plugin browser with live health badges. |
|
| CVSS radar + severity heatmap + exploitation-probability gauge. |
|
| Force-directed graph (D3) with co-authorship overlay. |
|
| Reporter → commodity → partner Sankey + commodity treemap. |
|
| Volume + tone timeline with country-pair chord diagram. |
|
| Force-directed ASN peering/upstream/downstream graph. |
|
| WebGL 3D structure viewer (3Dmol.js, cartoon for proteins, stick+sphere for ligands). |
|
| Lazy-loaded CSS-grid image gallery + provenance detail panel. |
Building new apps
Adding a UI binding to a generated provider is now a one-line spec change:
tools:
- name: my-tool
description: ...
endpoint: /foo
response_shape: records # ← binds to the shape primitiveSee tools/specs/README.md for the full reference. Bundle-size budgets are enforced in CI (warn ≥ 100 KB, error ≥ 1 MB); the v2.0 bundles range from 14 KB (timeseries primitive) to 34 KB (vulnerability app), all comfortably inside the budget.
Bundled plugins (83)
This is what's inside the one server. You don't install these individually — they all come along.
Government / Civic
Plugin | Source | Description |
| Australian Government Open Data | CKAN catalog at data.gov.au |
| Canada Open Data | CKAN catalog at open.canada.ca |
| data.gouv.fr | French government open data platform |
| Tweede Kamer | Dutch Parliament open data |
| Singapore Open Data | data.gov.sg datasets and collections |
| data.gov.uk | UK government CKAN catalog |
| Town of Cary Open Data | Town of Cary, NC open data via Socrata — public safety, transportation, utilities, parks |
| Data.gov | US federal government open datasets |
| City of Fayetteville Open Data | City of Fayetteville, NC open data via Socrata — public safety, infrastructure, community services |
| City of Raleigh Open Data | City of Raleigh open data via Socrata — public safety, infrastructure, parks, planning |
Statistics / Economics
Plugin | Source | Description |
| Eurostat | European Union statistics |
| International Monetary Fund | IMF SDMX 2.1 statistical data |
| FAOSTAT | UN food and agriculture statistics — production, prices, trade, land use, emissions |
| DBnomics | Global economic data aggregator (IMF, World Bank, etc.) |
| OECD | OECD economic & social statistics (SDMX) |
| World Bank | Development indicators by country |
| Statistics Netherlands (CBS) | Dutch statistical datasets (OData v2/v3) |
| UK ONS | UK Office for National Statistics |
Finance / Markets
Plugin | Source | Description |
| European Central Bank | ECB data portal (SDMX) — FX, monetary, banking |
| CoinGecko | Cryptocurrency market data |
| Frankfurter | ECB reference FX rates (key-less) |
| SEC EDGAR | Public company filings, XBRL financials |
| US Treasury Fiscal Data | Federal debt, daily Treasury statement, FX rates |
Health & Life Sciences
Plugin | Source | Description |
| disease.sh | COVID-19, influenza, vaccine aggregator |
| NCBI PubChem | Chemical compounds and substances |
| RCSB PDB | 3D protein and macromolecular structures |
| WHO GHO | WHO Global Health Observatory (OData) |
| US CDC | CDC open data via Socrata |
| ClinicalTrials.gov | NIH/NLM clinical trials registry v2 |
| openFDA | FDA adverse events, recalls, labels |
| HealthData.gov | HHS open health data via Socrata — outcomes, insurance, demographics, public health |
Earth Science / Weather / Environment
Plugin | Source | Description |
| Copernicus (EU) | European Earth observation and climate datasets |
| Open-Meteo | Weather forecast + historical + air quality |
| OpenAQ | Global air-quality measurements from reference monitors and sensors |
| NC DEQ Environmental GIS | NC Dept. of Environmental Quality ArcGIS Hub — permits, air/water quality, hazardous waste |
| NOAA NCEI | Climate data access services (key-less) |
| NOAA Tides & Currents | Water levels, tides, currents |
| USGS Earthquakes | Real-time and historical seismic events |
Biodiversity / Space / Physics
Plugin | Source | Description |
| CERN Open Data | Particle physics datasets and software |
| GBIF | Global biodiversity occurrence records |
| iNaturalist | Citizen-science species observations |
| OpenSky Network | Live ADS-B flight tracking |
| NASA | APOD, Near Earth Objects, Mars rover photos |
Geo / Mapping / Knowledge
Plugin | Source | Description |
| MCP Server Registry | Official MCP server registry — search and list published MCP servers |
| OSM Nominatim | Geocoding / reverse-geocoding (1 req/sec) |
| OSM Overpass | Query OpenStreetMap with Overpass QL |
| REST Countries | Country reference data — borders, capitals, currencies, languages, populations |
| Wikidata | Structured knowledge graph + SPARQL |
| Wikipedia | Article summaries, related, page views |
| ArcGIS REST API | Fetch public ArcGIS item metadata by ID — layers, maps, services, files |
| US Census Geocoder | Address ⇄ coordinates ⇄ geographies |
| NC OneMap | NC's authoritative GIS clearinghouse via ArcGIS REST — statewide geographic layers |
Agriculture / Trade
Plugin | Source | Description |
| UN Comtrade | International merchandise and services trade statistics |
Security / Vulnerability
Plugin | Source | Description |
| ENISA EUVD | Latest, exploited, critical, and filtered EU vulnerability search |
| CIRCL CVE Search | Recent CVEs, CVE details, and vendor/product browsing |
| crt.sh | Certificate transparency search for domains and certificates |
| FIRST.org EPSS | Exploit prediction scores and percentile ranks for CVEs |
| NVD CVE Database | NIST CVE records, filters, and change history |
| OpenSanctions | Sanctions, PEP, debarment, and related risk datasets |
| OSV.dev | Open source vulnerability advisories across ecosystems |
| Pwned Passwords | Anonymous breached-password SHA-1 prefix lookups |
| SSL Labs | Public TLS configuration and endpoint analysis |
| CISA KEV | Known Exploited Vulnerabilities catalog with remediation deadlines |
Transit / Aviation
Plugin | Source | Description |
| Swiss Federal Railways | Swiss train disruptions and service data |
| Deutsche Bahn | German railway open data |
| NDOV Loket | Dutch public transport data |
| FAA NAS Status | US airspace status, delays, ground stops (XML) |
| NOAA Aviation Weather | METAR, TAF, and station weather data |
Scholarly Literature
Plugin | Source | Description |
| arXiv | Preprint metadata (Atom XML) |
| Crossref | DOI metadata, citations, journals |
| DOAJ | Open-access journal and article search |
| Europe PMC | Biomedical literature + fulltext XML |
| OpenAlex | Open scholarly metadata |
Culture / Books
Plugin | Source | Description |
| Met Museum | Met Museum Open Access (CC0) |
| Open Library | Books, authors, works (Internet Archive) |
| UNESCO World Heritage Sites | Natural, cultural & mixed World Heritage Sites |
News / Media
Plugin | Source | Description |
| GDELT 2.0 | Global news, event, and tone monitoring across 100+ languages |
Networking / Internet
Plugin | Source | Description |
| BGPView | BGP routing data — ASN info, prefixes, peers (key-less) |
| RIPE NCC RIPEstat | Production-grade BGP data (key-less) |
Legal
Plugin | Source | Description |
| Dutch Rechtspraak | Dutch court rulings and case law (ECLI) |
| UK legislation.gov.uk | UK Acts, statutory instruments (XML/Atom) |
| CourtListener | US court opinions, dockets, judges (Free Law Project) |
| US Federal Register | Daily rules, notices, executive orders |
Optional environment variables
A few bundled plugins accept optional API keys for higher rate limits. Set these in your shell or in the Claude Desktop server config's env block:
Variable | Plugin | Purpose |
|
| Anonymous access works at low volumes |
|
| Raises NVD API rate limits |
| all | Your email, used in User-Agent for polite-pool APIs (Crossref, OpenAlex, OSM, SEC EDGAR). Defaults to |
|
| Enables authenticated OpenAQ API access |
|
| Enables authenticated OpenSanctions API access |
|
| Enables higher-tier UN Comtrade API access |
Server runtime flags
Variable | Purpose |
| Comma-separated plugin ids to activate at startup, or |
| When set on the SSE transport, requires |
| Enable OAuth 2.0 Authorization Code + PKCE. Set to the server's public base URL (e.g. |
| Truthy ( |
Transports
run defaults to SSE (HTTP, port 8000) so you can connect from the MCP Inspector or remote clients. For Claude Desktop (which the setup command targets), the spawned process uses stdio:
uv run meta-data-mcp run # SSE on 127.0.0.1:8000
uv run meta-data-mcp run --transport stdio # stdio
uv run meta-data-mcp run --host 0.0.0.0 --port 3001 # SSE bound to all interfacesRoadmap
Shipped
Hierarchical discovery (v2.0):
opendata.providers.findwith ranked scoring replaces the originally-planned browse/list tools.Agent-driven generation (v2.1):
opendata.plugins.draft+opendata.plugins.createlet the model close coverage gaps autonomously. Hardened in v2.1.1 with input allowlists, path containment, and a post-generation AST validator (14 RCE/path-traversal/bypass paths closed).Self-hosted SSE deployment (v2.1): bearer-auth-protected, systemd-managed, reverse-proxied.
Multi-language SDK (v2.2): Python embedded client (
meta_data_mcp.sdk) and TypeScript/Node client (@meta-data-mcp/sdk) for discovery over MCP SSE.OAuth 2.0 (v2.3): Authorization Code + PKCE + Dynamic Client Registration. Works with Claude.ai (StreamableHTTP) and MCP Inspector.
/.well-known/oauth-authorization-server,/.well-known/oauth-protected-resource, and/.well-known/openid-configurationall served.MCP registry provider (v2.3.4):
mcp.registry.searchandmcp.registry.list— discover other MCP servers from within meta-data-mcp. Listed on the official MCP registry and Smithery.
Still ahead
Expand provider coverage beyond the current 83.
Credits
Originally conceived by grll as
opendata-mcp.Forked and reshaped around the single-server "meta-mcp" model.
Built on Anthropic's open-source MCP spec.
License
MIT — see LICENSE.
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.
Latest Blog Posts
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/derekslinz/meta-data-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server