@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.
- package/README.md +70 -37
- package/bin/cli.js +11 -1
- package/dist/calculators.d.ts +108 -0
- package/dist/calculators.js +227 -0
- package/dist/cqc.d.ts +102 -0
- package/dist/cqc.js +102 -0
- package/dist/data/cqc-cluster.json +1 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +10 -28
- package/dist/server.d.ts +17 -0
- package/dist/server.js +248 -316
- package/llms.txt +13 -22
- package/package.json +21 -20
- package/server.json +8 -13
package/dist/index.d.ts
ADDED
|
@@ -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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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';
|
package/dist/server.d.ts
ADDED
|
@@ -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>;
|