MCP server

AdaptivMapr MCP server — healthcare-aware data import for Cursor and Claude Desktop

Drop AdaptivMapr into your AI coding environment. Schema-only tools run without an API key — the agent can browse templates, match headers, and validate rows with nothing leaving your machine except column names and a handful of sample values.

Install

Run the MCP server directly from npm. No API key needed for the free-tier tools.

npx -y @adaptivmapr/mcp-server

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "adaptivmapr": {
      "command": "npx",
      "args": ["-y", "@adaptivmapr/mcp-server"],
      "env": {
        "ADAPTIVMAPR_API_KEY": "<optional for schema-only>"
      }
    }
  }
}

Cursor

Add to your workspace .cursor/mcp.json

{
  "mcpServers": {
    "adaptivmapr": {
      "command": "npx",
      "args": ["-y", "@adaptivmapr/mcp-server"],
      "env": {
        "ADAPTIVMAPR_API_KEY": "<optional for schema-only>"
      }
    }
  }
}

Free tier tools

no API key required
  • adaptivmapr.list_templatesBrowse the healthcare and business template catalogue.
  • adaptivmapr.template_schemaRead the YAML schema for a named template — columns, types, validators.
  • adaptivmapr.match_headersHeader-to-field matching. Returns ranked mappings with confidence and alternatives.
  • adaptivmapr.validate_rowSchema-only row validation against a template. No PHI persisted.
  • adaptivmapr.csv_previewLocal CSV parsing helper. No network.

Gated tools

PHI Gateway bundle

Requires the PHI Gateway bundle. Calls route through PHI Gateway’s BAA-covered infrastructure.

  • adaptivmapr.match_full_fileFull-data mode with LLM-driven row-level cleanup. Routes through PHI Gateway.
  • adaptivmapr.commit_to_webhookFinalise an import and stream rows to the customer's webhook (HMAC-signed).
  • adaptivmapr.commit_to_databaseDirect Postgres write via the self-hosted enterprise worker.