@cyanheads/openfda-mcp-server 0.1.6 → 0.1.7
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/CLAUDE.md +1 -1
- package/README.md +23 -2
- package/package.json +2 -2
- package/server.json +9 -3
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** openfda-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.7
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
6
6
|
|
|
7
7
|
> **Read the framework docs first:** `node_modules/@cyanheads/mcp-ts-core/CLAUDE.md` contains the full API reference — builders, Context, error codes, exports, patterns. This file covers server-specific conventions only.
|
package/README.md
CHANGED
|
@@ -7,9 +7,15 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](https://www.npmjs.com/package/@cyanheads/openfda-mcp-server) [](https://www.npmjs.com/package/@cyanheads/openfda-mcp-server) [](./CHANGELOG.md) [](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [](https://modelcontextprotocol.io/)
|
|
11
11
|
|
|
12
|
-
[](./LICENSE) [](./LICENSE) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
13
|
+
|
|
14
|
+
</div>
|
|
15
|
+
|
|
16
|
+
<div align="center">
|
|
17
|
+
|
|
18
|
+
**Public Hosted Server:** [https://openfda.caseyjhand.com/mcp](https://openfda.caseyjhand.com/mcp)
|
|
13
19
|
|
|
14
20
|
</div>
|
|
15
21
|
|
|
@@ -120,6 +126,21 @@ openFDA-specific:
|
|
|
120
126
|
|
|
121
127
|
## Getting Started
|
|
122
128
|
|
|
129
|
+
### Public Hosted Instance
|
|
130
|
+
|
|
131
|
+
A public instance is available at `https://openfda.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
|
|
132
|
+
|
|
133
|
+
```json
|
|
134
|
+
{
|
|
135
|
+
"mcpServers": {
|
|
136
|
+
"openfda": {
|
|
137
|
+
"type": "streamable-http",
|
|
138
|
+
"url": "https://openfda.caseyjhand.com/mcp"
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
```
|
|
143
|
+
|
|
123
144
|
### Via bunx (no install)
|
|
124
145
|
|
|
125
146
|
Add to your MCP client config:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/openfda-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"mcpName": "io.github.cyanheads/openfda-mcp-server",
|
|
5
5
|
"description": "Query FDA data on drugs, food, devices, and recalls via openFDA. STDIO or Streamable HTTP.",
|
|
6
6
|
"type": "module",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"depcheck": "^1.4.7",
|
|
83
83
|
"ignore": "^7.0.5",
|
|
84
84
|
"tsc-alias": "^1.8.16",
|
|
85
|
-
"typescript": "^
|
|
85
|
+
"typescript": "^6.0.2",
|
|
86
86
|
"vitest": "^4.1.2"
|
|
87
87
|
}
|
|
88
88
|
}
|
package/server.json
CHANGED
|
@@ -6,14 +6,20 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/openfda-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.7",
|
|
10
|
+
"remotes": [
|
|
11
|
+
{
|
|
12
|
+
"type": "streamable-http",
|
|
13
|
+
"url": "https://openfda.caseyjhand.com/mcp"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
10
16
|
"packages": [
|
|
11
17
|
{
|
|
12
18
|
"registryType": "npm",
|
|
13
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
20
|
"identifier": "@cyanheads/openfda-mcp-server",
|
|
15
21
|
"runtimeHint": "bun",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.7",
|
|
17
23
|
"environmentVariables": [
|
|
18
24
|
{
|
|
19
25
|
"name": "OPENFDA_API_KEY",
|
|
@@ -38,7 +44,7 @@
|
|
|
38
44
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
39
45
|
"identifier": "@cyanheads/openfda-mcp-server",
|
|
40
46
|
"runtimeHint": "bun",
|
|
41
|
-
"version": "0.1.
|
|
47
|
+
"version": "0.1.7",
|
|
42
48
|
"environmentVariables": [
|
|
43
49
|
{
|
|
44
50
|
"name": "OPENFDA_API_KEY",
|