@gera-services/mcp-gera-clinic 0.1.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,10 @@
1
+ /**
2
+ * @gera-services/mcp-gera-clinic
3
+ *
4
+ * MCP server for GeraClinic — find CQC-registered UK care/health providers,
5
+ * read area care statistics, and run non-diagnostic health calculators, all
6
+ * offline. Re-exports the server and start function for programmatic use.
7
+ *
8
+ * @packageDocumentation
9
+ */
10
+ export { server, main } from './server.js';
package/dist/index.js CHANGED
@@ -1,28 +1,10 @@
1
- "use strict";
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: true });
9
- };
10
- var __copyProps = (to, from, except, desc) => {
11
- if (from && typeof from === "object" || typeof from === "function") {
12
- for (let key of __getOwnPropNames(from))
13
- if (!__hasOwnProp.call(to, key) && key !== except)
14
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
- }
16
- return to;
17
- };
18
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
- var index_exports = {};
20
- __export(index_exports, {
21
- server: () => import_server.server
22
- });
23
- module.exports = __toCommonJS(index_exports);
24
- var import_server = require("./server.js");
25
- // Annotate the CommonJS export names for ESM import in node:
26
- 0 && (module.exports = {
27
- server
28
- });
1
+ /**
2
+ * @gera-services/mcp-gera-clinic
3
+ *
4
+ * MCP server for GeraClinic — find CQC-registered UK care/health providers,
5
+ * read area care statistics, and run non-diagnostic health calculators, all
6
+ * offline. Re-exports the server and start function for programmatic use.
7
+ *
8
+ * @packageDocumentation
9
+ */
10
+ export { server, main } from './server.js';
@@ -0,0 +1,17 @@
1
+ /**
2
+ * GeraClinic MCP Server (stdio)
3
+ *
4
+ * Exposes GeraClinic's real UK healthcare-provider directory (Care Quality
5
+ * Commission registered locations) and its non-diagnostic health calculators to
6
+ * AI agents over the Model Context Protocol. Everything is computed locally from
7
+ * a bundled snapshot of real CQC data and pure reference math — no backend, no
8
+ * network, no auth required — so an agent (Claude, ChatGPT with tools, any MCP
9
+ * client) can find a care provider, read area care statistics, and run a health
10
+ * calculator entirely offline.
11
+ *
12
+ * Product: GeraClinic — https://geraclinic.com (a Gera Systems product)
13
+ * Data: Care Quality Commission www.cqc.org.uk, Open Government Licence v3.0.
14
+ */
15
+ import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
16
+ export declare const server: McpServer;
17
+ export declare function main(): Promise<void>;