ehr-mcp
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., "@ehr-mcpLook up building with EHR code 101018690"
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.
ehr-mcp
A small MCP server (streamable HTTP) that exposes
one tool backed by the Estonian Building Register (Ehitisregister) endpoint
GET /v3/buildingData. It lets you ask Claude about a building by its EHR code and
get back a compact, trimmed answer — address, key technical indicators, usage
purpose, energy certificate and cadastral units. Geometry is never returned.
Tool:
ehr_building_data— inputehr_kood(numeric string), optionaltaielik(boolean). Default returns a compact <2 KB summary;taielik: truereturns every field except geometry (~6 KB compact). Geometry is never returned in either mode.Upstream:
https://livekluster.ehr.ee/api/building/v3/buildingData(public, no auth).Output budget: trimmed result stays well under ~2 KB (≈0.5 KB typical) so it is cheap to load into model context. See docs/upstream.md for the full contract and trim decisions.
Stack
Node 20+, TypeScript (strict), Express, @modelcontextprotocol/sdk, zod, Vitest.
Related MCP server: Overture Maps MCP
Develop
npm install
cp .env.example .env # optional; leave MCP_TOKEN empty for no-auth local dev
npm run dev # tsx watch on http://localhost:3000Other scripts: npm run build (tsc → dist/), npm start (node dist/index.js),
npm test (Vitest).
Health check: GET /healthz → { "ok": true }.
Smoke test with MCP Inspector
Start the dev server (npm run dev), then in another terminal:
npx @modelcontextprotocol/inspector --cli --transport http --server-url http://localhost:3000/mcp --method tools/listExpect one tool, ehr_building_data. Then call it with a real EHR code
(101018690 is the Tallinn sample used in the tests):
npx @modelcontextprotocol/inspector --cli --transport http --server-url http://localhost:3000/mcp --method tools/call --tool-name ehr_building_data --tool-arg ehr_kood=101018690Expect trimmed JSON (< 2 KB, no kujud key). An unknown code such as 120896
returns a friendly EHR koodiga 120896 ehitist ei leitud. message.
If
MCP_TOKENis set, add--header "Authorization: Bearer <token>"to the Inspector commands.
Auth
Compatibility note: the claude.ai web custom-connector dialog authenticates only via OAuth (Client ID + Client Secret) — it has no field for a static bearer token. So the bearer token below cannot be used from the web connector; to use claude.ai, run the service authless (leave
MCP_TOKENunset — see Connect to Claude). The bearer token still works anywhere a custom header can be sent: Claude Code (--header), the MCP Inspector, and directcurl.
Auth on POST /mcp is a single shared bearer token — it is a secret string, not
a hash or a signed token, and there is no issuance, expiry, or user model by design.
/healthz is always open. If MCP_TOKEN is unset/empty, /mcp is open too
(local no-auth dev); if it is set, every request must send
Authorization: Bearer <token>. The comparison is constant-time
(crypto.timingSafeEqual, length-checked first so it can't throw).
Generate the token once:
openssl rand -hex 32
# or
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"The same value goes in three places:
Local
.env—MCP_TOKEN=...(gitignored, never committed).Render → your service → Environment →
MCP_TOKEN. This is whyrender.yamlmarks itsync: false: the value is entered in the dashboard, never stored in the repo.Wherever you send it as a header — Claude Code (
--header "Authorization: Bearer ..."), the MCP Inspector (--header), orcurl. (Not the claude.ai web connector — see the compatibility note above.)
Rotation: generate a new value, update it in Render's Environment and in the connector, and redeploy. The old token stops working the moment the new value is live — there is no grace window or revocation list to manage.
Verify auth against the deployed service (replace host + token):
# 401 without the header
curl -s -o /dev/null -w "%{http_code}\n" -X POST https://ehr-mcp.onrender.com/mcp \
-H "content-type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# 200 with it
curl -s -o /dev/null -w "%{http_code}\n" -X POST https://ehr-mcp.onrender.com/mcp \
-H "content-type: application/json" \
-H "Authorization: Bearer <token>" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'Deploy to Render
The repo includes render.yaml (a web service: npm ci && npm run build → node dist/index.js, health check /healthz).
Push this repo to GitHub.
In the Render dashboard: New → Web Service (or Blueprint to pick up
render.yamldirectly) and connect the GitHub repo.Set the
MCP_TOKENenvironment variable in the dashboard (see Auth).EHR_BASE_URLis supplied byrender.yaml.Deploy. The service will be at
https://<service>.onrender.com, with the MCP endpoint athttps://<service>.onrender.com/mcp.
Free-tier cold start: the free plan spins the service down after ~15 min idle; the next request then waits ~30–50 s while it wakes. The first Inspector or Claude call after idle may look like a timeout — retry. Render's Starter tier keeps the service always-on and removes the cold start.
Connect to Claude
claude.ai (custom connector): Settings → Connectors → Add custom connector →
URL https://<service>.onrender.com/mcp. Leave the OAuth Client ID / Client Secret
fields empty — the web connector only supports OAuth, not a static bearer token, so
the service must be running authless (MCP_TOKEN unset in Render). Once connected,
ask in Estonian, e.g. "Mis hoone on EHR koodiga 101018690?" — Claude will call
ehr_building_data and answer with the address and key indicators.
Running authless means anyone with the URL can call the tool. That's low-risk here — it only reads public, read-only Ehitisregister data — but it does mean your Render compute is open. If you need it locked down, use Claude Code with the bearer token instead of the web connector.
Claude Code (CLI):
claude mcp add --transport http ehr https://<service>.onrender.com/mcpIf auth is enabled, add the header:
claude mcp add --transport http ehr https://<service>.onrender.com/mcp --header "Authorization: Bearer <token>"Acceptance checklist
Inspector
tools/listreturnsehr_building_datatools/callwith a valid EHR code returns trimmed JSON < 2 KB, nokujudkeyInvalid EHR code returns a friendly not-found message
Request without bearer token (when
MCP_TOKENset) → 401From claude.ai, "Mis hoone on EHR koodiga ?" triggers the tool (verify after deploying + connecting)
Project layout
src/
config.ts env-derived config (PORT, EHR_BASE_URL, MCP_TOKEN)
index.ts Express app: /healthz + stateless POST /mcp
mcp.ts McpServer + ehr_building_data tool
ehr/
client.ts getBuildingData() with timeout + typed errors
trim.ts trimBuildingData() -> <2 KB, drops geometry
types.ts loose response types
docs/upstream.md upstream contract, params, response shape, trim map
test/ Vitest: trim + client, plus the raw response fixtureThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server that wraps Kartverket's open APIs for Norwegian geographic data including place names, addresses, elevation, municipalities, properties, statistical districts, and building points. Requires no authentication.754MIT
- Flicense-qualityBmaintenancePython MCP server for querying Overture Maps building footprint data via address search, building lookups, and nearby building listings.
- AlicenseAqualityAmaintenanceMCP server for Russian Rosreestr open cadastral data — lookup by cadastral number, address or coordinates; cadastral value with history.4MIT
- Alicense-qualityBmaintenanceMCP server for querying the Norwegian Brønnøysundregistrene business register, including companies, roles, subunits, and annual accounts, with built-in guards against common data traps like retired NACE codes and withheld employee counts.28MIT
Related MCP Connectors
MCP server for Mireye Earth — federal-source-cited geospatial data for any MCP-aware agent.
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
MCP server for French (BOAMP) + EU (TED) public procurement data via TenderAPI.
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/henriv/ehr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server