@cyanheads/cpsc-recalls-mcp-server 0.1.1 → 0.1.2
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/AGENTS.md +1 -1
- package/CLAUDE.md +1 -1
- package/README.md +27 -4
- package/changelog/0.1.x/0.1.2.md +11 -0
- package/package.json +1 -1
- package/server.json +9 -3
package/AGENTS.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** cpsc-recalls-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.2
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.19`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Developer Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** cpsc-recalls-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.2
|
|
5
5
|
**Framework:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) `^0.9.19`
|
|
6
6
|
**Engines:** Bun ≥1.3.0, Node ≥24.0.0
|
|
7
7
|
**MCP SDK:** `@modelcontextprotocol/sdk` ^1.29.0
|
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
<div align="center">
|
|
9
9
|
|
|
10
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/cpsc-recalls-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/cpsc-recalls-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
|
@@ -19,6 +19,12 @@
|
|
|
19
19
|
|
|
20
20
|
</div>
|
|
21
21
|
|
|
22
|
+
<div align="center">
|
|
23
|
+
|
|
24
|
+
**Public Hosted Server:** [https://cpsc-recalls.caseyjhand.com/mcp](https://cpsc-recalls.caseyjhand.com/mcp)
|
|
25
|
+
|
|
26
|
+
</div>
|
|
27
|
+
|
|
22
28
|
---
|
|
23
29
|
|
|
24
30
|
## Tools
|
|
@@ -95,12 +101,29 @@ Agent-friendly output:
|
|
|
95
101
|
|
|
96
102
|
## Getting started
|
|
97
103
|
|
|
104
|
+
### Public Hosted Instance
|
|
105
|
+
|
|
106
|
+
A public instance is available at `https://cpsc-recalls.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
|
|
107
|
+
|
|
108
|
+
```json
|
|
109
|
+
{
|
|
110
|
+
"mcpServers": {
|
|
111
|
+
"cpsc-recalls-mcp-server": {
|
|
112
|
+
"type": "streamable-http",
|
|
113
|
+
"url": "https://cpsc-recalls.caseyjhand.com/mcp"
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
### Self-Hosted / Local
|
|
120
|
+
|
|
98
121
|
Add the following to your MCP client configuration file.
|
|
99
122
|
|
|
100
123
|
```json
|
|
101
124
|
{
|
|
102
125
|
"mcpServers": {
|
|
103
|
-
"cpsc-recalls": {
|
|
126
|
+
"cpsc-recalls-mcp-server": {
|
|
104
127
|
"type": "stdio",
|
|
105
128
|
"command": "bunx",
|
|
106
129
|
"args": ["@cyanheads/cpsc-recalls-mcp-server@latest"],
|
|
@@ -118,7 +141,7 @@ Or with npx (no Bun required):
|
|
|
118
141
|
```json
|
|
119
142
|
{
|
|
120
143
|
"mcpServers": {
|
|
121
|
-
"cpsc-recalls": {
|
|
144
|
+
"cpsc-recalls-mcp-server": {
|
|
122
145
|
"type": "stdio",
|
|
123
146
|
"command": "npx",
|
|
124
147
|
"args": ["-y", "@cyanheads/cpsc-recalls-mcp-server@latest"],
|
|
@@ -136,7 +159,7 @@ Or with Docker:
|
|
|
136
159
|
```json
|
|
137
160
|
{
|
|
138
161
|
"mcpServers": {
|
|
139
|
-
"cpsc-recalls": {
|
|
162
|
+
"cpsc-recalls-mcp-server": {
|
|
140
163
|
"type": "stdio",
|
|
141
164
|
"command": "docker",
|
|
142
165
|
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/cpsc-recalls-mcp-server:latest"]
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Public hosted endpoint at cpsc-recalls.caseyjhand.com/mcp"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.2 — 2026-06-02
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- **Public hosted endpoint** — `https://cpsc-recalls.caseyjhand.com/mcp` (Streamable HTTP). `server.json` `remotes` array and README "Public Hosted Instance" section added.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/cpsc-recalls-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"mcpName": "io.github.cyanheads/cpsc-recalls-mcp-server",
|
|
5
5
|
"description": "MCP server for US consumer product recalls from the Consumer Product Safety Commission — hazards, remedies, and affected products.",
|
|
6
6
|
"type": "module",
|
package/server.json
CHANGED
|
@@ -6,14 +6,20 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/cpsc-recalls-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.2",
|
|
10
|
+
"remotes": [
|
|
11
|
+
{
|
|
12
|
+
"type": "streamable-http",
|
|
13
|
+
"url": "https://cpsc-recalls.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/cpsc-recalls-mcp-server",
|
|
15
21
|
"runtimeHint": "bun",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.2",
|
|
17
23
|
"packageArguments": [
|
|
18
24
|
{
|
|
19
25
|
"type": "positional",
|
|
@@ -42,7 +48,7 @@
|
|
|
42
48
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
49
|
"identifier": "@cyanheads/cpsc-recalls-mcp-server",
|
|
44
50
|
"runtimeHint": "bun",
|
|
45
|
-
"version": "0.1.
|
|
51
|
+
"version": "0.1.2",
|
|
46
52
|
"packageArguments": [
|
|
47
53
|
{
|
|
48
54
|
"type": "positional",
|