dailymed-mcp 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 +21 -0
- package/dist/api.js +52 -0
- package/dist/index.js +4 -0
- package/dist/server.js +38 -0
- package/package.json +44 -0
- package/server.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# DailyMed MCP
|
|
2
|
+
|
|
3
|
+
FDA drug label information from the public DailyMed API. No key required.
|
|
4
|
+
|
|
5
|
+
This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
|
|
6
|
+
|
|
7
|
+
## Tools
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* `search` Search drug labels.
|
|
11
|
+
* `spl` One label by set ID.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install
|
|
17
|
+
npm run build
|
|
18
|
+
node dist/index.js
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Data comes from the public DailyMed API, the official FDA label source.
|
package/dist/api.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
const BASE = "https://dailymed.nlm.nih.gov/dailymed/services/v2";
|
|
2
|
+
const UA = "mrfentmen-dailymed-mcp/1.0 (https://github.com/mrfentmen)";
|
|
3
|
+
export class DailymedError extends Error {
|
|
4
|
+
}
|
|
5
|
+
async function get(url) {
|
|
6
|
+
const res = await fetch(url, {
|
|
7
|
+
headers: { "User-Agent": UA, Accept: "application/json" },
|
|
8
|
+
signal: AbortSignal.timeout(30000),
|
|
9
|
+
});
|
|
10
|
+
if (!res.ok)
|
|
11
|
+
throw new DailymedError(`DailyMed returned HTTP ${res.status}`);
|
|
12
|
+
return (await res.json());
|
|
13
|
+
}
|
|
14
|
+
export async function search(args) {
|
|
15
|
+
const name = (args.drugName ?? "").trim();
|
|
16
|
+
if (!name)
|
|
17
|
+
throw new DailymedError("Provide a drug name");
|
|
18
|
+
const limit = Math.min(args.limit ?? 10, 20);
|
|
19
|
+
const d = await get(`${BASE}/spls.json?drug_name=${encodeURIComponent(name)}&pagesize=${limit}`);
|
|
20
|
+
const list = (d?.data ?? []);
|
|
21
|
+
const total = d?.metadata?.total ?? list.length;
|
|
22
|
+
if (!list.length)
|
|
23
|
+
return `No labels found for \"${name}\"`;
|
|
24
|
+
return `DailyMed labels for \"${name}\" (${total} total):\n` + list.map((s, i) => {
|
|
25
|
+
const date = s?.published_date ? s.published_date.slice(0, 10) : "";
|
|
26
|
+
return `${i + 1}. ${s?.title ?? "untitled"} | ${date} | set ${s?.setid ?? ""}`;
|
|
27
|
+
}).join("\n");
|
|
28
|
+
}
|
|
29
|
+
export async function spl(args) {
|
|
30
|
+
const setId = (args.setId ?? "").trim();
|
|
31
|
+
if (!setId)
|
|
32
|
+
throw new DailymedError("Provide a DailyMed set ID");
|
|
33
|
+
const d = await get(`${BASE}/spls/${encodeURIComponent(setId)}.json`);
|
|
34
|
+
const s = d?.data?.[0] ?? d;
|
|
35
|
+
if (!s?.setid && !s?.title)
|
|
36
|
+
throw new DailymedError(`Label not found: ${setId}`);
|
|
37
|
+
const lines = [
|
|
38
|
+
`Title: ${s?.title ?? "n/a"}`,
|
|
39
|
+
`Set ID: ${s?.setid ?? setId}`,
|
|
40
|
+
`Published: ${s?.published_date?.slice(0, 10) ?? "n/a"}`,
|
|
41
|
+
`Version: ${s?.spl_version ?? "n/a"}`,
|
|
42
|
+
];
|
|
43
|
+
const active = s?.active_ingredients;
|
|
44
|
+
if (Array.isArray(active) && active.length) {
|
|
45
|
+
lines.push(`Active ingredients: ${active.map((a) => `${a?.name ?? ""} ${a?.strength ?? ""}`.trim()).filter(Boolean).join("; ")}`);
|
|
46
|
+
}
|
|
47
|
+
const indication = s?.indications_and_usage;
|
|
48
|
+
if (typeof indication === "object" && indication && indication.indications_and_usage) {
|
|
49
|
+
lines.push(`\nIndications: ${String(indication.indications_and_usage).slice(0, 500)}`);
|
|
50
|
+
}
|
|
51
|
+
return lines.join("\n");
|
|
52
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
2
|
+
import { createServer } from "./server.js";
|
|
3
|
+
const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
|
|
4
|
+
main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
|
package/dist/server.js
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import { search } from "./api.js";
|
|
4
|
+
import { spl } from "./api.js";
|
|
5
|
+
const text = (value) => ({ content: [{ type: "text", text: value }] });
|
|
6
|
+
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
7
|
+
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
8
|
+
const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
|
|
9
|
+
export function createServer() {
|
|
10
|
+
const server = new McpServer({ name: "dailymed-mcp", version: "1.0.0" });
|
|
11
|
+
server.registerTool("search", {
|
|
12
|
+
title: "Search",
|
|
13
|
+
description: "Search drug labels by name.",
|
|
14
|
+
inputSchema: z.object({ drugName: z.string().describe("Drug name like aspirin."), limit: z.number().describe("Max results.").optional() }),
|
|
15
|
+
annotations: READ_ONLY,
|
|
16
|
+
}, async (args) => {
|
|
17
|
+
try {
|
|
18
|
+
return text(await search(args));
|
|
19
|
+
}
|
|
20
|
+
catch (e) {
|
|
21
|
+
return textError(error(e));
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
server.registerTool("spl", {
|
|
25
|
+
title: "Spl",
|
|
26
|
+
description: "One structured product label by set ID.",
|
|
27
|
+
inputSchema: z.object({ setId: z.string().describe("DailyMed set ID.") }),
|
|
28
|
+
annotations: READ_ONLY,
|
|
29
|
+
}, async (args) => {
|
|
30
|
+
try {
|
|
31
|
+
return text(await spl(args));
|
|
32
|
+
}
|
|
33
|
+
catch (e) {
|
|
34
|
+
return textError(error(e));
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
return server;
|
|
38
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"repository": {
|
|
5
|
+
"type": "git",
|
|
6
|
+
"url": "https://github.com/mrfentmen/dailymed-mcp.git"
|
|
7
|
+
},
|
|
8
|
+
"bin": {
|
|
9
|
+
"dailymed-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"main": "./dist/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"server.json",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "tsc -p tsconfig.json",
|
|
19
|
+
"start": "node dist/index.js",
|
|
20
|
+
"dev": "npm run build && node dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
25
|
+
"zod": "^3.23.8"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/node": "^22.0.0",
|
|
29
|
+
"typescript": "^5.6.0"
|
|
30
|
+
},
|
|
31
|
+
"name": "dailymed-mcp",
|
|
32
|
+
"description": "FDA drug label information from DailyMed. No key required.",
|
|
33
|
+
"mcpName": "io.github.mrfentmen/dailymed-mcp",
|
|
34
|
+
"keywords": [
|
|
35
|
+
"mcp",
|
|
36
|
+
"drugs",
|
|
37
|
+
"labels",
|
|
38
|
+
"fda",
|
|
39
|
+
"health"
|
|
40
|
+
],
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
}
|
|
44
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.mrfentmen/dailymed-mcp",
|
|
4
|
+
"description": "FDA drug label information from DailyMed. No key required.",
|
|
5
|
+
"repository": {
|
|
6
|
+
"url": "https://github.com/mrfentmen/dailymed-mcp",
|
|
7
|
+
"source": "github"
|
|
8
|
+
},
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"packages": [
|
|
11
|
+
{
|
|
12
|
+
"registryType": "npm",
|
|
13
|
+
"identifier": "dailymed-mcp",
|
|
14
|
+
"version": "1.0.0",
|
|
15
|
+
"transport": {
|
|
16
|
+
"type": "stdio"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|