bag-health-mcp
This MCP server provides read-only access to Swiss public health open data from the BAG Infectious Disease Dashboard (IDD), the Swiss Health Observatory (Obsan), the Versorgungsatlas (health-care supply atlas), and Sucht Schweiz (HBSC youth survey).
Infectious disease surveillance: List all 51 disease topics, discover available data series for a disease, get series metadata (valid filters like canton, age, sex), fetch time-series surveillance data (weekly or yearly cases, incidence rates), and obtain a canton-specific public health situation overview.
Bulk data access: List and download complete export datasets (CSV/JSON) for any disease.
Data freshness: Retrieve the current data version (updated every Wednesday).
Health indicators: Search for health indicators across Obsan, Versorgungsatlas, and Sucht Schweiz, then fetch their time series with 95% confidence intervals, cantonal breakdowns, and canton-vs-Switzerland comparisons where available.
Reference resources: Access static lists of canton codes, disease categories, and data licence/attribution information.
Reusable workflows: Use built-in prompts for a canton situation brief or outbreak check, combining multiple tool calls into one action.
Key characteristics: All operations are read-only with no authentication required; data is aggregated (no individual-level data); coverage includes Switzerland and Liechtenstein, 26 cantons, 51 pathogens, and 1,386 data series; every response includes provenance and attribution metadata.
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., "@bag-health-mcpHow is the flu evolving in Bern this week?"
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.
bag-health-mcp
Part of the Swiss Public Data MCP Portfolio β connecting AI models to Swiss public data sources.
MCP server for Swiss public health data. Its core is the Swiss Federal Office of Public Health (BAG) Infectious Disease Dashboard (IDD) β epidemiological surveillance for 51 pathogens (influenza, COVID-19, measles, wastewater surveillance, and more) β extended with a multi-source health-indicator layer over the Swiss Health Observatory (Obsan), the Versorgungsatlas (health-care supply atlas, with cantonal series) and Sucht Schweiz (HBSC youth survey). All read-only, public Open Government Data.
What You Can Do
"Wie ist die aktuelle Grippesituation im Kanton ZΓΌrich verglichen mit den letzten Wochen?"
β bag_health_mcp__get_canton_situation(canton="ZH")
"Gibt es aktuell einen Masernausbruch in der Schweiz?"
β bag_health_mcp__get_disease_data(series_id="measles/cases/incValue/year", canton="all")
"Wie entwickelt sich das SARS-CoV-2-Signal im Abwasser?"
β bag_health_mcp__list_series(topic="wastewater_viral_load")
β bag_health_mcp__get_disease_data(series_id="wastewater_viral_load/NA/value/date", ...)
"Welche Krankheitsdaten stellt das BAG aktuell bereit?"
β bag_health_mcp__list_diseases()
"Wie hat sich der Alkoholkonsum bei 15-JΓ€hrigen seit 2010 entwickelt?" # π― anchor query
β bag_health_mcp__search_health_indicators(source="suchtschweiz", topic="alkohol")
β bag_health_mcp__get_indicator_series(source="suchtschweiz",
indicator_id="monam/alkoholkonsum-alter-11-15", region="ZH", year_from=2010)
β More use cases by audience βπ― Anchor demo query β Β«Wie hat sich der Alkoholkonsum bei 15-JΓ€hrigen im Kanton ZΓΌrich seit 2010 entwickelt, und wie steht der Kanton im Schweizer Vergleich da?Β» The HBSC youth series (via Obsan) answers the Switzerland-wide trend since 2010 with 95% confidence intervals. This particular indicator is national only, so the response includes a
region_notesaying so (HBSC is not cantonally representative). Most other Obsan indicators are published by canton β see the note on cuts below. These are aggregated population statistics β not individual advice. Seedocs/tool-design-health-indicators.md.
Related MCP server: swisstopo-mcp
Tools
Infectious-disease surveillance (BAG IDD):
Tool | Description |
| List all 51 disease topics, grouped by category |
| List data series for a specific disease |
| Get available filter dimensions (canton, age, sex) |
| Fetch time-series surveillance data |
| Situational overview for a canton (Schulamt use case) |
| List available complete export datasets |
| Download raw CSV/JSON export |
| Current data version (updated every Wednesday) |
Health indicators β Obsan, Versorgungsatlas & Sucht Schweiz (multi-source):
Tool | Description |
| Search indicators by |
| Fetch one indicator's time series, naming which cut it is ( |
β οΈ Aggregated population statistics only. The indicator tools serve population-level aggregates (prevalences/metrics by age/sex/region) β not individual advice, diagnosis or case assessment, and no personal data. This is stated in both tool descriptions and every response (
aggregate_statistics_notice), and matters especially forsuchtschweiz(HBSC), which touches prevention topics in a school context. Sources: Obsanind.obsan.admin.ch(clean JSON API); Sucht Schweiz HBSC via the Obsan mirror (national); Versorgungsatlas returns a cantonal year/value series (26 cantons + aCHnational total, with 95% CIs and a canton-vs-CH ratio) from the Tarifpool. See the per-source probe notes.
Obsan publishes an indicator in several cuts, not one series. Measured over 60 catalogue entries on 2026-08-08: 50 have a cantonal cut (
kg), 49 one by age class (ag), 24 one by social position (sd) β and only 3 the plain national one (g). They are different measurements with different units, soget_indicator_seriesnames the cut it returned invariantand lists the rest invariants_available, rather than presenting one as a stand-in for another. Eight of the 60 publish no series at all; that case fails with its reason instead of returning an empty result. The census is recorded and dated intests/fixtures/obsan_variant_census.json.
Tool annotations
All tools carry MCP tool annotations so a host can reason about them without calling. Every tool is identical here β it only ever reads from the public, allow-listed data sources (BAG IDD, Obsan, Versorgungsatlas):
Annotation | Value | Meaning |
|
| No tool mutates any state. |
|
| No destructive side effects. |
|
| Repeating a call has no additional effect. |
|
| Tools reach an external system (the upstream data APIs). |
A host may therefore treat all calls as safe, cacheable reads. The values are
declared once as READ_ONLY in server.py and applied to all 10 tools.
MCP Primitives
This server uses all three MCP primitives, each for what it is best at:
Tools (10) β live, parameterised actions that call the IDD API (above).
Resources β static, read-only reference data a host can fetch and cache, no arguments or upstream call needed:
Resource URI | Description |
| Canton codes accepted by the tools (incl. FL, |
| Disease-topic taxonomy by category |
| Source, attribution and licence terms |
Prompts β reusable, parameterised workflows a host can surface (e.g. as slash-commands):
Prompt | Arguments | Purpose |
|
| Draft a Schulamt public-health situation brief |
|
| Check whether a disease is currently elevated |
Live surveillance data stays behind Tools (it is parameterised and changes weekly); fixed reference data is exposed as Resources; recommended multi-tool workflows are packaged as Prompts.
Relevance for Schools & City Administration
Schulamt / KreisschulbehΓΆrden:
Monitor influenza and ARI incidence in your canton
Single measles case β alert for schools with low vaccination coverage
Pertussis tracking β protect unvaccinated infants (siblings of school children)
Stadtverwaltung / KI-Fachgruppe:
Public Health Reporting with structured weekly data
Wastewater surveillance as 1-week lead indicator before clinical cases
Synergy with portfolio:
bag-epl-mcpβ "What treatments are listed?" (EPL medication database)bag-health-mcpβ "What is currently spreading?" (surveillance data)
Data Source
IDD API:
https://api.idd.bag.admin.chβ No authentication requiredUpdate cycle: Every Wednesday
Coverage: Switzerland + Liechtenstein (FL), 26 cantons
Topics: 51 pathogens, 1386 data series
Datenquellen & Lizenzen / Data sources & licences
Source | Provider | Licence | Attribution required |
Infectious Disease Dashboard (IDD) | Federal Office of Public Health (FOPH / BAG) | opendata.swiss Open Government Data β free use, source attribution required (Swiss OGD terms, CC BY-equivalent) | Yes |
Health indicators | Obsan β Swiss Health Observatory ( | No explicit machine-readable licence; treat as Swiss OGD practice β free use, cite the per-indicator source | Yes |
Health-care supply atlas | Versorgungsatlas (BAG/Obsan, | Same (Swiss OGD practice, cite source) | Yes |
HBSC youth survey | Sucht Schweiz β HBSC, obtained via the Obsan mirror | Same (Swiss OGD practice, cite Β«Sucht Schweiz β HBSCΒ») | Yes |
Required citation: Federal Office of Public Health FOPH β Infectious Disease
Dashboard (IDD), open data via opendata.swiss. For the indicator tools, each
response's provenance.source names the concrete upstream (e.g. Β«Sucht Schweiz β
HBSCΒ» via Obsan). Every tool response carries attribution in a provenance block
(attribution + license fields) so downstream consumers can surface it
automatically.
Architecture:
βββββββββββββββββββ api.idd.bag.admin.ch (IDD API, no auth)
MCP Host β bag-health-mcp ββββΆ ind.obsan.admin.ch (Obsan JSON API)
(Claude, etc.) βββΆβ MCP SDK ββββΆ versorgungsatlas.ch (indicator catalogue)
β 10 Tools β all HTTPS, egress allow-listed, no auth
βββββββββββββββββββInstallation
Claude Desktop (stdio)
{
"mcpServers": {
"bag-health": {
"command": "uvx",
"args": ["bag-health-mcp"]
}
}
}Cloud / HTTP
pip install bag-health-mcp
python -m bag_health_mcp.server --http --port 8000Transport, host and port are set via environment variables β MCP_TRANSPORT
(http/stdio), MCP_HOST, MCP_PORT β which is the recommended way for
deployments (the --http flag still works for local use). The server binds to
127.0.0.1 by default so a local HTTP server is not exposed to the network.
Container/cloud deployments bind all interfaces by setting MCP_HOST=0.0.0.0
explicitly β the provided Dockerfile does this.
β οΈ Security: HTTP transport exposes the server on the network. Only bind beyond
127.0.0.1in a network-isolated environment β never directly on a public/shared network. Binding to a non-localhost host logs a warning at startup. The default stdio transport has no network surface. Seedocs/security-posture.md.
HTTP auth (optional): set MCP_AUTH_TOKEN to require
Authorization: Bearer <token> on every HTTP request (401 otherwise). Unset =
no auth (fine for stdio/local). This gates who may invoke the server; for real
user identity, front it with a gateway.
CORS (browser clients): set MCP_CORS_ORIGINS to a comma-separated origin
allow-list to enable cross-origin browser access; the Mcp-Session-Id header is
exposed so stateful sessions work. Empty = no cross-origin (never a wildcard).
Host allow-list (DNS rebinding): set MCP_ALLOWED_HOSTS to a comma-separated
list of the names this server is reachable under, including the port, e.g.
bag.example.ch:8000. Requests arriving under any other Host are rejected
with 421; loopback stays allowed so container health checks keep working.
Unset on a non-localhost bind, the check is left off and a warning is logged β
that is the gateway-fronted deployment, where the gateway validates Host. It
is not guessed: on 0.0.0.0 the reachable name is unknowable here, and a wrong
guess would reject the very deployment it is meant to protect.
This is independent of MCP_AUTH_TOKEN. The token says who is asking; this
says under which name the server is addressed. A rebinding attack runs in a
browser that already holds the token.
For running at scale (session affinity, resource limits, MCP gateway), see the
deployment & scaling guide and the reference
manifests in deploy/.
Logging: the server emits structured JSON logs (one object per line, with an
RFC 5424 severity) to stderr β stdout is reserved for the stdio JSON-RPC
transport. Set the level with MCP_LOG_LEVEL (default INFO).
Tracing (optional): install the telemetry extra and point the server at an OTLP collector to get OpenTelemetry spans per tool-call plus instrumented outbound HTTP:
pip install "bag-health-mcp[telemetry]"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://otel-collector:4318"
# optional: OTEL_SERVICE_NAME=bag-health-mcpTracing is a no-op unless both the extra is installed and an OTEL_*
endpoint is set. Spans carry only the tool name and (on error) the exception
class β never tool arguments, cantons or surveillance data.
Available Disease Topics
Category | Topics |
Respiratory | influenza, covid19, acute_respiratory_infection, respiratory_pathogens |
Enteric | campylobacteriosis, salmonellosis, ehec, listeriosis, hepatitis_a/e |
STI & Bloodborne | hiv, aids, syphilis, gonorrhea, hepatitis_b/c, chlamydiosis |
Vaccine-preventable | measles, pertussis, rubella, tetanus, diphtheria, ipd, meningo |
Vector-borne | lyme_borreliosis, tick-borne_encephalitis, dengue, malaria, zika |
Wastewater | wastewater_viral_load, wastewater_sequencing |
Demo
Claude asking about the influenza situation in canton Zurich β single tool call, structured result, actionable German-language summary.
MCP Protocol Version
This server speaks two protocol eras over the same endpoint. The client's first request on a connection decides which one applies; a later claim from the other era is refused.
Era | Revision | Who reaches it |
|
| What today's clients speak. The server answers with the revision asked for, or with the |
Per-request envelope |
| A request carrying the |
Both revisions are pinned in
tests/test_protocol_version.py and asserted
against the installed SDK, so a Dependabot bump of mcp cannot move either one
silently. The handshake ceiling is measured against a live initialize through
the assembled ASGI stack, not read off a constant name.
Note that the SDK's LATEST_PROTOCOL_VERSION is an alias for the modern
era, not for the handshake era β pinning against it alone would leave the era
that current clients actually negotiate free to drift.
Update policy. When the gate fails, do not edit the constant blindly: read
the spec changelog between the two revisions, verify the server still behaves,
then move the constant, this section, README.de.md and
CHANGELOG.md together.
Safety & Limits
Aspect | Details |
Access | Read-only β no write operations possible |
Egress | Code-layer allow-list: the server only contacts three public data hosts ( |
Personal data | None β all sources are aggregated/anonymised (BAG IDD at canton level by law; indicators are population aggregates by age/sex/region) |
Rate limits | No published IDD API rate limit; server caps responses at 104 data points per call by default ( |
Timeout | 30 s per API call |
Authentication | No API keys required β all data publicly accessible |
Data licence | opendata.swiss OGD β free use, source attribution required (CC BY-equivalent). FOPH IDD must be cited; see Data sources & licences |
Terms of Service | Subject to BAG IDD API ToS |
Known Limitations
Beta API: IDD API is labelled
v0.1 betaβ schema may change without noticeWeekly cadence: Data is not real-time; updated Wednesdays only
Canton granularity: Some rare diseases have insufficient cases for canton-level data (suppressed for privacy)
Age groups: Available dimensions vary by disease series; use
bag_health_mcp__get_series_detailsto check
Compliance
ISDS (Stadt ZΓΌrich): a draft information-security protection-needs classification (Schutzbedarfsanalyse per Grundwert + measures mapping) is in
docs/isds-klassifikation.md. It is a technically-grounded draft pending ISBO/OIZ sign-off β not a binding classification.Data classification (Schulamt): the data is classified ΓFFENTLICH / BUI (public OGD, no personal data, aggregated at canton level with small cells suppressed at source). Draft scheme + aggregation-risk note in
docs/datenklassifikation-schulamt.md; the aggregatingbag_health_mcp__get_canton_situationtool surfaces this in its response.Security posture: lethal-trifecta assessment (the server is strictly read-only β not affected), secret-management decision (no secrets β public data), and network-exposure notes are in
docs/security-posture.md.Phase architecture: this is a Phase 1 (read-only) server; write/send capabilities are deferred behind documented prerequisites. See
docs/roadmap.md.Reporting vulnerabilities: see the security policy for how to report security issues privately.
Contributing
See CONTRIBUTING.md (Deutsch).
Security
See SECURITY.md (Deutsch) for the security posture and how to report a vulnerability confidentially.
License
Code: MIT (see LICENSE).
Data: BAG IDD is Open Government Data on opendata.swiss under free use with mandatory source attribution (Swiss OGD terms, CC BY-equivalent) β not public domain. Cite the Federal Office of Public Health FOPH (IDD) when reusing the data; see Data sources & licences.
Author
Hayal Oezkan Β· github.com/malkreide
Related Portfolio Servers
swiss-statistics-mcpβ BFS demographic databag-epl-mcpβ BAG medication reimbursement listzurich-opendata-mcpβ City of Zurich open data
Installation
Run via uv's uvx β no clone or manual install needed. Add to your MCP client config (mcpServers for Claude Desktop, Cursor and Windsurf; use a top-level servers key for VS Code in .vscode/mcp.json):
{
"mcpServers": {
"bag-health-mcp": {
"command": "uvx",
"args": [
"bag-health-mcp"
]
}
}
}Available Tools
10 toolsbag_health_mcp__download_exportARead-onlyIdempotent
Download a complete export dataset from the BAG IDD as CSV or JSON. Returns the raw data content for a specific disease file. Useful for bulk analysis. Files are updated weekly.Retrieve a full raw dataset (all rows) for one disease for downstream/offline analysis.The preview is truncated at 3000 chars; for very large datasets use the IDD web interface. Get file names from bag_health_mcp__list_export_files.bag_health_mcp__download_export(file='INFLUENZA_oblig', format='csv') -> raw CSV content.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| file | Yes | |
| note | Yes | |
| rows | Yes | |
| format | Yes | |
| preview | Yes | |
| provenance | No | |
| size_bytes | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond annotations (read-only, idempotent, non-destructive), the description adds useful context: files are updated weekly, preview truncated at 3000 chars, and the output is raw data content.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-organized with tags for use_case and important_notes, but contains some redundancy (e.g., 'Useful for bulk analysis' and use_case tag). Could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers all necessary aspects: purpose, prerequisites (list_export_files), format options, limitations (preview truncation), and example. Output schema exists, so return value details are not needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes both parameters well, but the description reinforces with an example and clarifies the format default. The use_case tag adds context beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it downloads a complete export dataset as CSV or JSON for a specific disease file, distinguishing it from siblings like list_export_files and get_disease_data by specifying the use case of bulk analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly guides when to use ('useful for bulk analysis', 'retrieve full raw dataset for offline analysis') and when not ('for very large datasets use IDD web interface'). Also directs to use bag_health_mcp__list_export_files to get valid file names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__get_canton_situationARead-onlyIdempotent
Get a public health situation overview for a specific canton or Switzerland. Combines current incidence data for key school-relevant diseases (influenza, measles, norovirus proxy via acute_respiratory_infection) with trend information. Designed for school authorities and city administration Public Health Reporting. One-call situational overview for a canton (Schulamt / city administration) without orchestrating multiple series queries.Aggregates several series; a single unavailable series is reported as a per-disease status, not a failure of the whole call.bag_health_mcp__get_canton_situation(canton='ZH') -> per-disease latest value, trend and change for Zurich. Anchor query: 'Wie ist die aktuelle Grippesituation im Kanton ZΓΌrich?'
| Name | Required | Description | Default |
|---|---|---|---|
| canton | No | ZH | |
| include_wastewater | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | Yes | |
| canton | Yes | |
| diseases | Yes | |
| provenance | No | |
| school_relevance | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive. The description adds that it aggregates several series and gracefully handles missing series (reports per-disease status instead of failure). This provides valuable behavioral context beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear main sentence, followed by a use_case block, an important_notes block, and an example. Each segment adds unique value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the output schema exists (not shown but present), the description need not detail return values. It covers purpose, typical usage, error handling, and provides an example. It is complete enough for the tool's complexity, though it could explicitly mention the output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It only mentions the 'canton' parameter in the example and notes it defaults to 'ZH', but does not explain the format or list valid values. The 'include_wastewater' parameter is mentioned but not explained at all. This is insufficient for a low-coverage scenario.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states the tool gets a public health situation overview for a canton or Switzerland, combining incidence data for specific diseases (influenza, measles, etc.). It distinguishes from sibling tools by positioning itself as a one-call aggregated overview versus more granular series queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a use_case tag targeting school authorities and city administration, and notes it avoids orchestrating multiple series queries. It provides an example query in German. However, it does not explicitly state when not to use it or list alternatives, but the sibling tool list and context imply its role.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__get_data_versionARead-onlyIdempotent
Get the current data version of the BAG IDD. Returns the date of the last data update (format YYYYMMDD). IDD is updated every Wednesday.Check how fresh the data is / which weekly snapshot you are looking at.Data is updated only weekly (Wednesdays); not real-time.bag_health_mcp__get_data_version() -> version='20260325', date='2026-03-25'.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| date | Yes | |
| note | Yes | |
| version | Yes | |
| provenance | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations declare readOnlyHint and destructiveHint, so safety profile is clear. The description adds beyond: return format (YYYYMMDD), weekly update cadence (Wednesdays), and that data is not real-time. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description uses structured <use_case>, <important_notes>, and <example> tags for clarity. It is concise but covers purpose, usage, and a caveat. Minor improvement could remove redundancy, but overall effective.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple version-check tool with no parameters and an output schema, the description fully explains what it returns, format, and update frequency. No gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has no meaningful parameters (only an empty 'params' object). With 0 parameters, baseline is 4. Description appropriately omits parameter details as none exist.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Get the current data version of the BAG IDD', specifying a distinct resource (data version) and action. It differentiates from sibling tools which focus on diseases, series, or indicators.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The <use_case> tag explicitly states when to use: 'Check how fresh the data is / which weekly snapshot you are looking at.' The <important_notes> tag provides a key constraint. No explicit alternatives or exclusions, but the context is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__get_disease_dataARead-onlyIdempotent
Fetch time-series surveillance data for a disease from the BAG IDD. Returns weekly or yearly case counts, incidence rates, or other metrics. Data updated every Wednesday. Get the actual numbers/trend for a disease in a canton over time β the core data-retrieval tool.Call bag_health_mcp__get_series_details first for valid filters. 'incValue' = incidence per 100'000; 'value' = absolute count.bag_health_mcp__get_disease_data(series_id='influenza/cases/incValue/iso_week', canton='ZH') -> weekly influenza incidence for Zurich.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| topic | Yes | |
| results | Yes | |
| summary | Yes | |
| series_id | Yes | |
| provenance | No | |
| aggregation | Yes | |
| temporality | Yes | |
| interpretation | Yes | |
| filters_applied | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly, idempotent, and non-destructive behavior. The description adds value by specifying data updates every Wednesday and explaining the meaning of 'incValue' (incidence per 100k) vs 'value' (absolute count), which are useful behaviors beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at around 100 words, well-structured with clearly labeled sections (use_case, important_notes, example), and front-loaded with the core purpose. Every sentence adds essential information without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex time-series data retrieval tool with multiple filters, the description covers data source, update frequency, metric meanings, prerequisites (call get_series_details), and provides an example. The presence of an output schema means the return format does not need to be described here, making it complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already includes descriptions for all parameters (canton, sex, age_group, etc.), so the baseline is 3. The description enhances this by clarifying that 'incValue' is incidence per 100k and 'value' is absolute count, and it provides a concrete example that ties the parameters together.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Fetch time-series surveillance data for a disease from the BAG IDD' with a specific verb and resource. The use_case section emphasizes it as the core data-retrieval tool, distinguishing it from siblings like bag_health_mcp__get_series_details which provides valid filters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly directs to call bag_health_mcp__get_series_details first for valid filters, and the use_case states the tool is for getting actual numbers/trends. While it does not explicitly list alternatives, the context from sibling names and the prerequisite hint provide clear usage guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__get_indicator_seriesARead-onlyIdempotent
Fetch one health indicator's time series from Obsan, the Versorgungsatlas or Sucht Schweiz (HBSC). Use an indicator_id from bag_health_mcp__search_health_indicators. Obsan/suchtschweiz return national year/value points (with 95% confidence intervals and sex/category dimensions where available); versorgungsatlas returns a cantonal year/value series (26 cantons + a 'CH' national total, with 95% CIs and a canton-vs-Switzerland ratio) β pass region='ZH' for a canton. IMPORTANT: AGGREGATED population statistics only β NOT individual advice, diagnosis or case assessment, no personal data. For 'suchtschweiz' (school-context prevention topics) the values are national HBSC survey aggregates by age/sex. Get a national trend (obsan/suchtschweiz) or a cantonal series with a Switzerland comparison (versorgungsatlas).obsan/suchtschweiz indicators are national β passing a canton returns the national series with an explanatory note (HBSC is not cantonally representative). versorgungsatlas supports cantons: region='ZH' returns ZH plus a canton-vs-CH comparison.bag_health_mcp__get_indicator_series(source='versorgungsatlas', indicator_id='_003/b', region='ZH') -> ZH cantonal series with 95% CIs and its ratio to the Swiss average.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | No | |
| unit | No | |
| title | Yes | |
| points | No | |
| region | No | |
| source | Yes | |
| dimensions | No | |
| provenance | No | |
| region_note | No | |
| indicator_id | Yes | |
| total_points | No | |
| interpretation | No | |
| values_available | No | |
| aggregate_statistics_notice | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate safe read operation (readOnlyHint, idempotentHint, destructiveHint false). Description adds behavioral details: return structure (national/cantonal, confidence intervals, dimensions), special case for suchtschweiz (HBSC aggregates), and warning that data is aggregated population statistics only, no personal data.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is well-structured with use_case, important_notes, and example sections, front-loading core information. While slightly verbose, every section adds meaningful guidance. Could combine notes more tightly, but overall efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (6 parameters, multiple data sources, output schema exists), description covers return differences between sources, important caveats (not personal data, national-only restriction for some sources), and provides a concrete example. References sibling search tool for workflow completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema already provides descriptions for all 6 parameters (100% coverage). Description adds value by explaining parameter behavior beyond schema: region behavior for national vs cantonal, indicator_id format guidance, and example usage. Gives practical context like year range filtering and language options.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses verb 'fetch' and resource 'health indicator's time series' with explicit data sources (Obsan, Versorgungsatlas, Sucht Schweiz). Clearly distinguishes from sibling bag_health_mcp__search_health_indicators by referencing it for getting indicator_id.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Includes <use_case> and <important_notes> sections that explain when to use national vs cantonal series, that obsan/suchtschweiz are national only, and that versorgungsatlas supports canton comparisons. Provides explicit guidance on using sibling search tool first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__get_series_detailsARead-onlyIdempotent
Get metadata and available filter values for a specific data series. Shows which canton, age group, sex, and other dimensions are available. Always call this before bag_health_mcp__get_disease_data to know valid filter options.Learn the valid filter values (cantons, age groups, sex) for a series so a subsequent data query uses accepted parameters.Available dimensions vary by series β always check here rather than assuming.bag_health_mcp__get_series_details(series_id='influenza/cases/incValue/iso_week') -> cantons=['ZH','BE',...], age_groups=[...].
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| note | Yes | |
| cantons | Yes | |
| series_id | Yes | |
| age_groups | Yes | |
| provenance | No | |
| sex_options | Yes | |
| available_filters | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is clear. The description adds behavioral context beyond annotations by noting that available dimensions vary by series, so one should always check. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with XML tags for use case, important notes, and example. It is front-loaded with the core purpose. Slightly long but each part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with one parameter and an output schema, the description covers all relevant aspects: what it returns, when to use it, and an example. It also warns about varying dimensions. Completeness is high.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter series_id has a description in the schema that explains the format and suggests using list_series to discover IDs. The description reinforces this and provides an example. Although the schema description coverage metric is 0% for top-level params, the nested description and the tool description together add meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it gets metadata and available filter values for a specific data series. It distinguishes from sibling tool bag_health_mcp__get_disease_data by noting it should be called first to know valid filter options.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly says 'Always call this before bag_health_mcp__get_disease_data to know valid filter options.' Also provides a use case, important notes, and an example, giving clear guidance on when and how to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__list_diseasesARead-onlyIdempotent
List all 51 disease topics available in the BAG Infectious Disease Dashboard (IDD). Returns the topic slug needed for other tools, grouped by category (respiratory, enteric, STI, vector-borne, wastewater). Discover what diseases are available before querying data.Start here; the topic slugs returned are required inputs for the other tools.bag_health_mcp__list_diseases() -> categories incl. 'influenza', 'measles', 'covid19'.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| usage | Yes | |
| categories | Yes | |
| provenance | No | |
| total_topics | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds context about output grouping but does not contradict annotations. Additional behavioral detail (e.g., no side effects) is already covered.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise (~3 sentences plus XML), front-loaded with purpose, and every sentence adds value. The XML tags appropriately structure usage and example.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no parameters, a non-empty output schema, and comprehensive annotations, the description fully covers what the tool does, its output, and its role in the workflow.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are no meaningful parameters (only an empty params object). The description does not need to document parameters and instead focuses on the output, effectively compensating for the 0% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists all 51 disease topics from the BAG Infectious Disease Dashboard, and explains output (slug, category). This is specific and distinct from sibling tools that handle series or data queries.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The XML tags <use_case> and <important_notes> explicitly instruct the agent to start here and note that slugs are required for other tools, providing clear when-to-use guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__list_export_filesARead-onlyIdempotent
List all available export file names from the BAG IDD. These are complete datasets (CSV/JSON) per disease, e.g. INFLUENZA_oblig, COVID19_wastewater_sequencing, MEASLES_oblig. Use with bag_health_mcp__download_export to get raw data files.Discover which complete bulk datasets can be downloaded for offline/bulk analysis.Returns file names, not the data β pass one to bag_health_mcp__download_export.bag_health_mcp__list_export_files() -> ['INFLUENZA_oblig', 'COVID19_wastewater_sequencing', ...].
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| files | Yes | |
| usage | Yes | |
| version | Yes | |
| provenance | No | |
| total_files | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, destructiveHint=false. The description adds context: 'Returns file names, not the data' and mentions version parameter behavior, which goes beyond the annotations without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured with XML tags (use_case, important_notes, example) and is front-loaded with the core statement. It is slightly verbose but each sentence adds value. The example aids understanding.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With an output schema present, the description does not need to detail return format. It covers the main purpose, parameter version context, and links to the sibling tool. For a simple list tool, this is sufficiently complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0% (though the schema itself describes the version parameter). The description does not elaborate on the version parameter but successfully explains the return value and usage. Baseline 3 is appropriate given the schema's own description covers the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists export file names from BAG IDD, provides examples of file names (e.g., INFLUENZA_oblig), and differentiates from the sibling tool download_export by noting it returns names not data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a use_case tag explaining when to use (discover bulk datasets) and an important_notes tag directing to use with bag_health_mcp__download_export. It does not explicitly exclude alternatives, but the guidance is clear for the intended use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__list_seriesARead-onlyIdempotent
List all available data series for a specific disease topic. Each series is identified by 'topic/chapter/aggregation/temporality'. Returns series IDs to use with bag_health_mcp__get_series_details and bag_health_mcp__get_disease_data.Find which exact series exist for a disease (e.g. weekly cases vs yearly incidence) before fetching data.Needs a valid topic slug from bag_health_mcp__list_diseases.bag_health_mcp__list_series(topic='influenza') -> 'influenza/cases/incValue/iso_week', ...
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| topic | Yes | |
| usage | Yes | |
| chapters | Yes | |
| provenance | No | |
| series_ids | Yes | |
| total_series | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true, and openWorldHint=true. The description adds behavioral context beyond annotations, such as the output format 'topic/chapter/aggregation/temporality' and the fact that it returns series IDs for subsequent use. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise, with only necessary information. It is well-structured using <use_case>, <important_notes>, and <example> tags for easy parsing. The main sentence is front-loaded, and every piece of content adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has an output schema, so the description does not need to explain return values. It covers the purpose, prerequisite, usage scenario, and output format. For a simple list tool with one parameter, this is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, but the schema itself includes a description for the topic parameter. The description reinforces the parameter's purpose by stating the need for a valid slug from list_diseases and demonstrating usage in the example. However, it does not elaborate on constraints like pattern or maxLength.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'List all available data series for a specific disease topic', identifying the verb ('list') and resource ('data series'). It distinguishes from siblings by noting that the returned series IDs are used with other tools, and the example further clarifies the output format.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a <use_case> explaining when to use this tool ('before fetching data'), and <important_notes> highlighting the prerequisite of a valid topic slug from list_diseases. It does not explicitly state when not to use it, but the context is clear enough for agent selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
bag_health_mcp__search_health_indicatorsARead-onlyIdempotent
Search health indicators across three Swiss sources: 'obsan' (Swiss Health Observatory β hundreds of indicators incl. the HBSC youth-survey series), 'versorgungsatlas' (Swiss health-care supply atlas, ~124 indicators), and 'suchtschweiz' (addiction / HBSC series, served via Obsan's official mirror). Returns matching indicator_ids to pass to bag_health_mcp__get_indicator_series. IMPORTANT: this serves AGGREGATED population statistics (prevalences/metrics by age/sex/region) β NOT individual advice, diagnosis or case assessment, and no personal data. Especially for 'suchtschweiz' (prevention topics in a school context): the figures are population-level survey aggregates only. Find which indicators exist for a topic (e.g. youth alcohol) before fetching a series.Most indicators are national; cantonal breakdowns are rare (HBSC youth surveys are not cantonally representative).bag_health_mcp__search_health_indicators(source='suchtschweiz', topic='alkohol') -> Obsan HBSC alcohol-prevalence indicators.
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| query | Yes | |
| usage | Yes | |
| source | Yes | |
| indicators | Yes | |
| provenance | No | |
| total_matches | Yes | |
| aggregate_statistics_notice | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds important context: the data is aggregated population statistics, not individual advice or diagnosis, and notes limitations (e.g., cantonal breakdowns are rare). No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is comprehensive but not overly verbose. It is front-loaded with the main purpose and uses structured tags (use_case, important_notes, example) for readability. Minor redundancy could be trimmed, but overall efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity of searching across three sources with multiple parameters, the description covers key aspects: sources, output use, limitations (national focus), and example. It references the output schema indirectly via the downstream tool, making it complete for selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has detailed descriptions for all parameters, so the description's contribution is modest. However, it adds value by explaining source semantics ('obsan', 'versorgungsatlas', 'suchtschweiz') and providing an example that illustrates topic and source usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it searches health indicators across three Swiss sources. It specifies the output (matching indicator_ids) and the downstream tool (bag_health_mcp__get_indicator_series). This distinguishes it from sibling tools like list_series or get_series_details.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes a use case tag and an example, guiding when to use: before fetching a series. It does not explicitly state when not to use, but it provides enough context to infer appropriate usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
10 tool updates
v0.2.3- First observed
bag_health_mcp__download_export - First observed
bag_health_mcp__get_canton_situation - First observed
bag_health_mcp__get_data_version - First observed
bag_health_mcp__get_disease_data - First observed
bag_health_mcp__get_indicator_series - First observed
bag_health_mcp__get_series_details - First observed
bag_health_mcp__list_diseases - First observed
bag_health_mcp__list_export_files - First observed
bag_health_mcp__list_series - First observed
bag_health_mcp__search_health_indicators
TDQS
Each tool has a clearly distinct purpose: listing diseases, series, export files; getting details, data, version, canton situation; searching and fetching indicators. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case after the common prefix 'bag_health_mcp__'. Verbs like list, get, download, search are used uniformly.
10 tools is well-scoped for the domain. They cover infectious disease dashboard operations and health indicator queries without being overwhelming or too sparse.
The tool surface provides full CRUD-like operations for data retrieval: listing, metadata, data fetching, bulk download, version checking, and a convenience aggregation. No obvious gaps exist.
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 Connectors
opendata.swiss MCP β Switzerland's federal open-data portal (CKAN catalogue).
MCP gateway federating 22 biomedical MCP servers behind one endpoint: gnomAD, ClinVar, HPO, VEP.
MCP server for US nursing facility search and ownership lookup (NursingHomeDatabase).
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server connecting AI models to Swiss Federal Food Safety and Veterinary Office open data, enabling queries about food recalls, animal disease surveillance, food control results, and more.11MIT
- AlicenseAqualityBmaintenanceMCP server for Swiss federal geodata -- maps, elevation, geocoding, cadastral extracts, and downloadable datasets via Swisstopo APIs.208MIT
- AlicenseAqualityAmaintenanceMCP Server for Swiss road mobility β shared vehicles, EV charging, traffic alerts, Park & Rail, and multimodal trip planning.151MIT
- AlicenseAqualityAmaintenanceMCP server for Swiss federal legislation metadata via Fedlex, enabling search and retrieval of act details with ELI URIs, SR numbers, and multilingual support.3Apache 2.0
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/malkreide/bag-health-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server