CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

K01 Synthetic Health Data

k01labs/k01-mcp-server
authHTTPregistry active
Summary

Connects to K01's hosted synthetic health data API to generate FHIR R4/R5 compliant patient records without touching real PHI. Exposes six tools: generate cohorts with demographic and clinical constraints (age, gender, ICD-10 conditions), search a virtual patient database, retrieve complete records or specific medication/condition lists, and compare the same data across FHIR versions. Uses differential privacy and deterministic seeding for reproducible test data. Reach for this when you're building healthcare AI workflows and need realistic EHR data for development, testing prompt chains against patient records, or validating FHIR implementations without compliance overhead. Requires an API key from K01.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

K01 MCP Server

License: MIT MCP

Generate and query clinically realistic synthetic health data directly from your AI workflow.


K01's MCP server gives AI agents and LLM-powered tools access to privacy-preserving synthetic health data generation. Generate FHIR-compliant patient cohorts, query structured EHR data, and compare across FHIR versions — all with built-in differential privacy. No real patient data is involved at any point.

This repository contains documentation and configuration for the K01 MCP server. The server implementation is proprietary and runs on K01 infrastructure.

Available Tools

ToolDescriptionKey Parameters
generate_synthetic_cohortGenerate synthetic patient cohorts with demographic and clinical constraintscount, age_min/age_max, gender, condition (ICD-10), seed, locale
search_patientsSearch a virtual patient database with advanced healthcare filtersgender, birthdate, numberOfMedicinesFrom/To, conditionTypes, locale
get_patient_recordRetrieve a complete patient record with medication and condition summariespatient_id, fhir_version
get_patient_medicationsGet detailed medication records with ATC codes and therapeutic indicationspatient_id, seed, fhir_version
get_patient_conditionsRetrieve patient conditions with ICD-10 codes and localized namespatient_id, seed, fhir_version
compare_fhir_versionsCompare the same patient data across FHIR R4 and R5patient_id, resource_type

All tools support both FHIR R4 and R5. See docs/tools.md for full parameter documentation.

Quick Start

Claude Desktop

Add to your Claude Desktop configuration (Settings > MCP Servers):

{
  "mcpServers": {
    "k01": {
      "url": "https://mcp.k01.is/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Cursor

Add to your Cursor MCP configuration (.cursor/mcp.json):

{
  "mcpServers": {
    "k01": {
      "url": "https://mcp.k01.is/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Restart the application after adding the configuration. The K01 tools will appear in the tool list.

Authentication

The K01 MCP server uses Bearer token authentication. Include your API key in the Authorization header.

To get an API key, contact K01 at k01.is. Self-service key provisioning is coming soon.

See docs/authentication.md for details.

Examples

Generate a diabetic cohort

"Generate 100 patients aged 40-65 with Type 2 diabetes"

The generate_synthetic_cohort tool creates a FHIR Bundle with Patient, Condition, MedicationStatement, Procedure, and Observation resources:

generate_synthetic_cohort(count=100, age_min=40, age_max=65, condition="E11.9", seed=42)

Search for complex patients

"Find patients with 3+ medications and chronic conditions"

search_patients(numberOfMedicinesFrom=3, conditionTypes="chronic", _count=20)

Compare FHIR versions

"How do this patient's medications look in R4 vs R5?"

compare_fhir_versions(patient_id="0101302989", resource_type="Medication")

See docs/examples.md for more workflows.

Privacy and Security

All data generated by K01 is fully synthetic. No real patient data is used, stored, or referenced at any point in the pipeline.

  • Differential privacy — noise injection with configurable epsilon values ensures generated distributions cannot be reverse-engineered to identify real individuals
  • No training on real data — the generation models are built from published clinical statistics and pharmacological references, not patient records
  • FHIR-compliant output — all resources conform to HL7 FHIR R4/R5 specifications, making them safe drop-in replacements for real data in development and testing
  • Deterministic seeding — use seeds for reproducible results without persisting any patient data server-side

Links

  • K01 Website
  • API Documentation
  • Tool Reference
  • Authentication Guide
  • Usage Examples
  • FAQ
  • MCP Protocol

License

This repository (documentation, configuration, and examples) is licensed under MIT. The K01 server implementation is proprietary.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Data & Analytics
Registryactive
TransportHTTP
AuthRequired
UpdatedFeb 25, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.