Back to Browse

Meta Data MCP Server

Developer ToolsUse Caution4.5MCP RegistryLocal
Free

Server data from the Official MCP Registry

Query 76 open data APIs — government, science, finance, environment, and more.

About

Query 76 open data APIs — government, science, finance, environment, and more.

Security Report

4.5
Use Caution4.5High Risk

Valid MCP server (3 strong, 1 medium validity signals). 6 known CVEs in dependencies (0 critical, 5 high severity) Package registry verified. Imported from the Official MCP Registry.

6 files analyzed · 7 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-derekslinz-meta-data-mcp": {
      "args": [
        "meta-data-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

meta-data-mcp

A single MCP server that transparently routes user requests to 90 open-data sources.

meta-data-mcp is one MCP server — not many. Under the hood it bundles 90 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 setup

The command auto-detects which MCP clients you have installed and adds one meta-data-mcp entry under mcpServers in each. Supported clients:

ClientConfig file
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%/Claude/claude_desktop_config.json (Windows)
Claude Code~/.claude.json
Cursor~/.cursor/mcp.json
Windsurf~/.codeium/windsurf/mcp_config.json
Gemini CLI~/.gemini/settings.json
LM Studio~/.cache/lm-studio/mcp.json

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 clients

Target 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 all

If 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-json

When 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.

CommandWhat it does
uv run meta-data-mcp runRun the server (default SSE; pass --transport stdio for Claude Desktop).
uv run meta-data-mcp setupRegister the server in detected MCP client configs (or one target via --client).
uv run meta-data-mcp removeUnregister the server from detected MCP client configs (or one target via --client).
uv run meta-data-mcp cleanupDetect and remove legacy multi-server entries (--apply to commit).
uv run meta-data-mcp inspectLaunch mcp-inspector against the server.
uv run meta-data-mcp listInformational: list the internal plugins bundled in this server.
uv run meta-data-mcp infoInformational: show server overview. Pass --plugin <name> for plugin-level details.
uv run meta-data-mcp versionPrint 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:

  1. 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.
  2. Plugin tools — ~330 tools coming from the 90 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

ToolPurpose
opendata_providers_findFree-text search over the plugin registry. Returns ranked matches. When nothing matches the response carries a no_match: true flag and a next_step hint pointing at opendata_plugins_draft + opendata_plugins_create.
opendata_explain_choiceShow the scoring breakdown for a search (useful for debugging routing decisions).
opendata_domains_listEnumerate the controlled domain vocabulary (health, legal, finance, earth-science, …).
opendata_regions_listEnumerate the controlled region vocabulary (us, eu, uk, global, …).
opendata_providers_describeFull metadata for one plugin by id — title, description, domains, regions, keywords, homepage, required env vars.
opendata_providers_listPaginated dump of the whole registry.
opendata_providers_activateActivate one provider so its tools become callable in this session.
opendata_providers_deactivateRemove an activated provider's tools from the current session catalog.
opendata_providers_list_activeList currently active providers and the tool names each contributes.
opendata_health_snapshotReturn per-provider health scores used by discovery health badges and routing context.
opendata_plugins_draftBuild 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 opendata_plugins_create. Use this so the LLM never has to hand-author YAML.
opendata_plugins_createAutonomously create a new plugin. Takes a YAML spec (typically produced by opendata_plugins_draft), runs the generator, imports the new module, registers it in the live registry, and hot-loads its tools onto the running server. Use this when opendata_providers_find returns no match.
opendata_tool_callProxy-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:

  1. User asks for data, e.g. "show me the most recent published CVEs."
  2. LLM calls opendata_providers_find with the query (cve, vulnerability, …).
  3. If the registry has a match: the LLM activates the matching provider (opendata_providers_activate, or activate_top in find) and then calls the plugin tool.
  4. If the registry has no match: the response includes no_match: true and a next_step field that explains the autonomous creation path. The LLM:
    1. Tells the user it's about to add coverage for this data source.
    2. Web-searches for an open API that exposes the requested data (e.g. the NVD or CIRCL CVE API).
    3. Calls opendata_plugins_draft with 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.
    4. Passes that YAML to opendata_plugins_create. The server materializes the plugin module + tests, imports the module, registers a ProviderEntry in the in-memory dynamic registry, and merges the new tools into the running server's tool list.
    5. Calls the newly-available tool to answer the user's original question.
  5. 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.

Auto-contribution of created plugins

When opendata_plugins_create builds a new plugin, meta-data-mcp opens a pull request contributing it back to the project so others can use it — the catalogue grows from real usage.

  • Consent: if your MCP client supports elicitation, you'll get a yes/no prompt (default yes) before the PR is opened.
  • What's shared: only the three generated files (spec, provider module, test stub) on a contribute/plugin-<id> branch. Your working tree is never touched.
  • Opt out: set META_DATA_MCP_AUTO_CONTRIBUTE=0.
  • Target repo: derived from your origin remote; override with META_DATA_MCP_CONTRIBUTE_REPO=owner/repo.
  • Requires the gh CLI authenticated with push access. Without it, the branch is committed locally and the response tells you how to finish the PR.

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.

ShapeRendersPayload contract
timeseries/v1Line chart + auto-computed profile (min/max/mean/stddev/gap-count) via Plotly.{points: [{date, value, series?}], axes: {x, y}, annotations?}
geofeatures/v1Leaflet map + marker cluster (with density layer for high-cardinality outputs).`{features: GeoJSON
records/v1Faceted, sortable, paginated HTML table + per-column auto-profile (type inference, top-k, null rate, range).{rows: [...], schema?, default_facets?}

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:

AppDrivesVisualization
discovery/v1opendata_providers_find, opendata_domains_list, opendata_regions_list, opendata_providers_activate, etc.Faceted plugin browser with live health badges.
vulnerability/v1nvd-*, osv-*, epss-*, cisa-kev.CVSS radar + severity heatmap + exploitation-probability gauge.
entity-graph/v1crossref-works-by-author, openalex-search-works, wikidata-search-entities, opensanctions-search.Force-directed graph (D3) with co-authorship overlay.
trade-flows/v1comtrade-trade-data.Reporter → commodity → partner Sankey + commodity treemap.
news-tone/v1gdelt-article-search, gdelt-volume-timeline.Volume + tone timeline with country-pair chord diagram.
network-topology/v1ripestat-asn-neighbours and friends.Force-directed ASN peering/upstream/downstream graph.
molecular/v1pubchem-compound, pdb-entry.WebGL 3D structure viewer (3Dmol.js, cartoon for proteins, stick+sphere for ligands).
museum/v1met-search, met-search-by-artist, met-get-object.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 primitive

See 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.

Citable answers

Every tool result carries a machine-readable citation manifest: exactly which upstream requests produced it. The transport kernel records each HTTP exchange during a tool call, and the result's first content block gains a _meta["meta-data-mcp/citations"] entry:

{
  "sources": [
    {
      "provider": "eu-eurostat",
      "title": "Eurostat",
      "homepage": "https://ec.europa.eu/eurostat",
      "license": "Eurostat data is reusable under CC BY 4.0; cite '© European Union, Eurostat'.",
      "url": "https://ec.europa.eu/eurostat/api/dissemination/statistics/1.0/data/nama_10_gdp?format=JSON&lang=en",
      "method": "GET",
      "status": 200,
      "fetched_at": "2026-07-09T14:02:11.482Z",
      "cache_hit": false
    }
  ]
}

This is what makes an LLM data answer auditable: the exact URL(s) — query parameters included — when they were fetched, whether they came from the transport cache, and the provider's license/attribution terms. Anyone can re-issue the URL and check the claim.

  • Secrets never leak. Values of sensitive query parameters are replaced with REDACTED — an exact denylist (api_key, token, appid, …) plus conservative heuristics (*key, *token, *secret*, *signature*, …) that also cover presigned cloud-storage URLs and plugin-specific key params. Userinfo credentials in the URL itself (https://user:pass@host) are redacted too; parameter names are preserved so the URL stays reproducible with your own credentials. Headers never enter the manifest.
  • Failed exchanges are cited too — a 4xx/5xx a handler recovered from, and the intermediate 429/5xx attempts the kernel's retry loop absorbed, are part of how the answer was produced; filter on status. (A tool call that errors out returns the SDK's isError result, which carries no manifest.)
  • Honest timestamps. fetched_at is when the bytes were actually fetched: cache-served exchanges report the original fetch time with cache_hit: true, not the cache-read time.
  • On by default. Set META_DATA_MCP_CITATIONS=0 to disable. Complements the opt-in tamper-evidence digest (META_DATA_MCP_PROVENANCE); both can coexist on the same result.

Bundled plugins (90)

This is what's inside the one server. You don't install these individually — they all come along.

Government / Civic

PluginSourceDescription
au_data_govAustralian Government Open DataCKAN catalog at data.gov.au
ca_open_govCanada Open DataCKAN catalog at open.canada.ca
ch_opendata_swissopendata.swissSwiss federal open-data catalog (CKAN)
de_govdataGovData GermanyGermany's federal open-data catalog (CKAN)
fr_data_gouvdata.gouv.frFrench government open data platform
nl_tweedekamerTweede KamerDutch Parliament open data
sg_data_govSingapore Open Datadata.gov.sg datasets and collections
uk_govdata.gov.ukUK government CKAN catalog
us_caryTown of Cary Open DataTown of Cary, NC open data via Socrata — public safety, transportation, utilities, parks
us_data_govData.govUS federal government open datasets
us_fayettevilleCity of Fayetteville Open DataCity of Fayetteville, NC open data via Socrata — public safety, infrastructure, community services
us_raleighCity of Raleigh Open DataCity of Raleigh open data via Socrata — public safety, infrastructure, parks, planning

Statistics / Economics

PluginSourceDescription
eu_eurostatEurostatEuropean Union statistics
global_imfInternational Monetary FundIMF SDMX 2.1 statistical data
global_faostatFAOSTATUN food and agriculture statistics — production, prices, trade, land use, emissions
global_dbnomicsDBnomicsGlobal economic data aggregator (IMF, World Bank, etc.)
global_oecdOECDOECD economic & social statistics (SDMX)
global_world_bankWorld BankDevelopment indicators by country
nl_cbsStatistics Netherlands (CBS)Dutch statistical datasets (OData v2/v3)
uk_onsUK ONSUK Office for National Statistics

Finance / Markets

PluginSourceDescription
eu_ecbEuropean Central BankECB data portal (SDMX) — FX, monetary, banking
global_coingeckoCoinGeckoCryptocurrency market data
global_frankfurterFrankfurterECB reference FX rates (key-less)
us_sec_edgarSEC EDGARPublic company filings, XBRL financials
us_treasury_fiscalUS Treasury Fiscal DataFederal debt, daily Treasury statement, FX rates

Health & Life Sciences

PluginSourceDescription
global_chemblChEMBLEMBL-EBI molecule and bioactivity database
global_disease_shdisease.shCOVID-19, influenza, vaccine aggregator
global_pubchemNCBI PubChemChemical compounds and substances
global_rcsb_pdbRCSB PDB3D protein and macromolecular structures
global_who_ghoWHO GHOWHO Global Health Observatory (OData)
us_cdc_socrataUS CDCCDC open data via Socrata
us_clinicaltrialsClinicalTrials.govNIH/NLM clinical trials registry v2
us_fda_openfdaopenFDAFDA adverse events, recalls, labels
us_healthdata_govHealthData.govHHS open health data via Socrata — outcomes, insurance, demographics, public health

Earth Science / Weather / Environment

PluginSourceDescription
eu_copernicusCopernicus (EU)European Earth observation and climate datasets
global_open_meteoOpen-MeteoWeather forecast + historical + air quality
global_openaqOpenAQGlobal air-quality measurements from reference monitors and sensors
us_ncdeq_gisNC DEQ Environmental GISNC Dept. of Environmental Quality ArcGIS Hub — permits, air/water quality, hazardous waste
us_noaa_nceiNOAA NCEIClimate data access services (key-less)
us_noaa_tidesNOAA Tides & CurrentsWater levels, tides, currents
us_usgs_earthquakeUSGS EarthquakesReal-time and historical seismic events

Biodiversity / Space / Physics

PluginSourceDescription
cern_opendataCERN Open DataParticle physics datasets and software
global_gbifGBIFGlobal biodiversity occurrence records
global_inaturalistiNaturalistCitizen-science species observations
global_openskyOpenSky NetworkLive ADS-B flight tracking
global_solarsystemLe Systeme Solaire APIOpen solar-system object and body metadata
us_nasaNASAAPOD, Near Earth Objects, Mars rover photos

Geo / Mapping / Knowledge

PluginSourceDescription
global_mcp_registryMCP Server RegistryOfficial MCP server registry — search and list published MCP servers
global_osm_nominatimOSM NominatimGeocoding / reverse-geocoding (1 req/sec)
global_overpassOSM OverpassQuery OpenStreetMap with Overpass QL
global_rest_countriesREST CountriesCountry reference data — borders, capitals, currencies, languages, populations
global_wikidataWikidataStructured knowledge graph + SPARQL
global_wikipediaWikipediaArticle summaries, related, page views
us_arcgis_itemArcGIS REST APIFetch public ArcGIS item metadata by ID — layers, maps, services, files
us_census_geocoderUS Census GeocoderAddress ⇄ coordinates ⇄ geographies
us_nc_onemapNC OneMapNC's authoritative GIS clearinghouse via ArcGIS REST — statewide geographic layers

Agriculture / Trade

PluginSourceDescription
global_un_comtradeUN ComtradeInternational merchandise and services trade statistics

Security / Vulnerability

PluginSourceDescription
eu_euvdENISA EUVDLatest, exploited, critical, and filtered EU vulnerability search
global_circl_cveCIRCL CVE SearchRecent CVEs, CVE details, and vendor/product browsing
global_crtshcrt.shCertificate transparency search for domains and certificates
global_epssFIRST.org EPSSExploit prediction scores and percentile ranks for CVEs
global_nvd_cveNVD CVE DatabaseNIST CVE records, filters, and change history
global_opensanctionsOpenSanctionsSanctions, PEP, debarment, and related risk datasets
global_osv_devOSV.devOpen source vulnerability advisories across ecosystems
global_pwned_passwordsPwned PasswordsAnonymous breached-password SHA-1 prefix lookups
global_ssllabsSSL LabsPublic TLS configuration and endpoint analysis
us_cisa_kevCISA KEVKnown Exploited Vulnerabilities catalog with remediation deadlines

Transit / Aviation

PluginSourceDescription
ch_sbbSwiss Federal RailwaysSwiss train disruptions and service data
global_transitousTransitousWorldwide transit journey planning — travel times, transfers, itineraries (MOTIS over open GTFS)
de_dbDeutsche BahnGerman railway open data
nl_ndovNDOV LoketDutch public transport data
nl_ovapiOVapiLive Dutch transit — real-time departures, vehicle positions, GTFS/GTFS-RT feeds
us_faa_nasstatusFAA NAS StatusUS airspace status, delays, ground stops (XML)
us_noaa_awcNOAA Aviation WeatherMETAR, TAF, and station weather data

Scholarly Literature

PluginSourceDescription
global_arxivarXivPreprint metadata (Atom XML)
global_crossrefCrossrefDOI metadata, citations, journals
global_doajDOAJOpen-access journal and article search
global_europepmcEurope PMCBiomedical literature + fulltext XML
global_openalexOpenAlexOpen scholarly metadata

Culture / Books

PluginSourceDescription
global_met_museumMet MuseumMet Museum Open Access (CC0)
global_open_libraryOpen LibraryBooks, authors, works (Internet Archive)
global_unesco_heritageUNESCO World Heritage SitesNatural, cultural & mixed World Heritage Sites

News / Media

PluginSourceDescription
global_gdeltGDELT 2.0Global news, event, and tone monitoring across 100+ languages
global_hackernewsHacker News APIPublic stories, comments, jobs, and user profiles

Networking / Internet

PluginSourceDescription
global_bgpviewBGPViewBGP routing data — ASN info, prefixes, peers (key-less)
global_ripe_statRIPE NCC RIPEstatProduction-grade BGP data (key-less)

Legal

PluginSourceDescription
nl_rechtspraakDutch RechtspraakDutch court rulings and case law (ECLI)
uk_legislationUK legislation.gov.ukUK Acts, statutory instruments (XML/Atom)
us_courtlistenerCourtListenerUS court opinions, dockets, judges (Free Law Project)
us_federal_registerUS Federal RegisterDaily 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:

VariablePluginPurpose
COURTLISTENER_API_TOKENus_courtlistenerAnonymous access works at low volumes
NVD_API_KEYglobal_nvd_cveRaises NVD API rate limits
META_DATA_MCP_CONTACTallYour email, used in User-Agent for polite-pool APIs (Crossref, OpenAlex, OSM, SEC EDGAR). Defaults to meta-data-mcp@example.org.
OPENAQ_API_KEYglobal_openaqEnables authenticated OpenAQ API access
OPENSANCTIONS_API_KEYglobal_opensanctionsEnables authenticated OpenSanctions API access
UN_COMTRADE_API_KEYglobal_un_comtradeEnables higher-tier UN Comtrade API access

Server runtime flags

VariablePurpose
META_DATA_MCP_PRELOADComma-separated plugin ids to activate at startup, or * for all. Default unset = discovery-only (~13 meta tools).
META_DATA_MCP_AUTH_TOKENWhen set on the SSE transport, requires Authorization: Bearer <token> on /sse and /messages.
META_DATA_MCP_OAUTH_ISSUEREnable OAuth 2.0 Authorization Code + PKCE. Set to the server's public base URL (e.g. http://localhost:8000). Mounts /.well-known/oauth-authorization-server, /register, /authorize, /token, /revoke, and a consent page at /oauth/consent. Coexists with META_DATA_MCP_AUTH_TOKEN — both auth methods remain valid simultaneously.
META_DATA_MCP_OAUTH_MAX_CLIENTSMaximum number of registered OAuth clients kept in memory. Default 1000. Must be a positive integer; invalid values fall back to the default.
META_DATA_MCP_OAUTH_TOKEN_TTLOAuth access-token lifetime in seconds. Default 3600 (1 hour). Must be a positive integer; invalid values fall back to the default.
META_DATA_MCP_CITATIONSCitation manifest on tool results (see Citable answers). Default on; set to 0/false/no/off to disable. Adds a meta-data-mcp/citations entry to the first content block's _meta listing every upstream HTTP exchange (redacted URL, status, fetch timestamp, cache disposition, provider title/homepage/license).
META_DATA_MCP_PROVENANCETruthy (1, true, yes, on) enables a meta-data-mcp/provenance entry on every tool-call result's first content block's _meta, carrying sha256 and timestamp (ISO 8601 UTC, ms precision). The digest covers the canonical (tool, arguments, content) envelope — content blocks dumped via model_dump(mode="json", by_alias=True, exclude_none=True) with _meta stripped, JSON-serialized with sort_keys=True, separators=(",",":"), ensure_ascii=True. Binding tool name + arguments into the hash means audit logs can distinguish "tool A returned X" from "tool B returned X". Default off — opt in when you need tamper-evidence. See meta_data_mcp/provenance.py module docstring for the verbatim receiver recipe.

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 interfaces

Roadmap

Shipped

  • Hierarchical discovery (v2.0): opendata_providers_find with ranked scoring replaces the originally-planned browse/list tools.
  • Agent-driven generation (v2.1): opendata_plugins_draft + opendata_plugins_create let 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-configuration all served.
  • MCP registry provider (v2.3.4): mcp_registry_search and mcp_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 90.

Credits

License

MIT — see LICENSE.

Reviews

No reviews yet

Be the first to review this server!

Meta Data MCP Server - Query 76 open data APIs — government, science, finance, | MCP Marketplace