@cyanheads/pubchem-mcp-server 0.1.7 → 0.1.8
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 +23 -2
- package/package.json +4 -4
- package/server.json +9 -3
package/README.md
CHANGED
|
@@ -6,7 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
<div align="center">
|
|
8
8
|
|
|
9
|
-
[](./CHANGELOG.md) [](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [](https://modelcontextprotocol.io/) [](./LICENSE) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
<div align="center">
|
|
14
|
+
|
|
15
|
+
**Public Hosted Server:** [https://pubchem.caseyjhand.com/mcp](https://pubchem.caseyjhand.com/mcp)
|
|
10
16
|
|
|
11
17
|
</div>
|
|
12
18
|
|
|
@@ -89,7 +95,22 @@ PubChem-specific:
|
|
|
89
95
|
|
|
90
96
|
## Getting Started
|
|
91
97
|
|
|
92
|
-
###
|
|
98
|
+
### Public Hosted Instance
|
|
99
|
+
|
|
100
|
+
A public instance is available at `https://pubchem.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
|
|
101
|
+
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"mcpServers": {
|
|
105
|
+
"pubchem": {
|
|
106
|
+
"type": "streamable-http",
|
|
107
|
+
"url": "https://pubchem.caseyjhand.com/mcp"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
### Self-Hosted / Local
|
|
93
114
|
|
|
94
115
|
Add to your MCP client config (e.g., `claude_desktop_config.json`):
|
|
95
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/pubchem-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "MCP server for the PubChem chemical database. Search compounds, fetch properties, safety data, bioactivity, cross-references, and entity summaries. STDIO & Streamable HTTP.",
|
|
5
5
|
"mcpName": "io.github.cyanheads/pubchem-mcp-server",
|
|
6
6
|
"type": "module",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@cyanheads/mcp-ts-core": "^0.1.
|
|
65
|
+
"@cyanheads/mcp-ts-core": "^0.1.28",
|
|
66
66
|
"pino-pretty": "^13.1.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"depcheck": "^1.4.7",
|
|
72
72
|
"ignore": "^7.0.5",
|
|
73
73
|
"tsc-alias": "^1.8.16",
|
|
74
|
-
"typescript": "^
|
|
75
|
-
"vitest": "^4.1.
|
|
74
|
+
"typescript": "^6.0.2",
|
|
75
|
+
"vitest": "^4.1.1"
|
|
76
76
|
}
|
|
77
77
|
}
|
package/server.json
CHANGED
|
@@ -6,14 +6,20 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/pubchem-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.8",
|
|
10
|
+
"remotes": [
|
|
11
|
+
{
|
|
12
|
+
"transportType": "streamable-http",
|
|
13
|
+
"url": "https://pubchem.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/pubchem-mcp-server",
|
|
15
21
|
"runtimeHint": "bun",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.8",
|
|
17
23
|
"packageArguments": [
|
|
18
24
|
{ "type": "positional", "value": "run" },
|
|
19
25
|
{ "type": "positional", "value": "start:stdio" }
|
|
@@ -36,7 +42,7 @@
|
|
|
36
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
37
43
|
"identifier": "@cyanheads/pubchem-mcp-server",
|
|
38
44
|
"runtimeHint": "bun",
|
|
39
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.8",
|
|
40
46
|
"packageArguments": [
|
|
41
47
|
{ "type": "positional", "value": "run" },
|
|
42
48
|
{ "type": "positional", "value": "start:http" }
|