@cyanheads/pubchem-mcp-server 0.1.7 → 0.1.9

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.
Files changed (3) hide show
  1. package/README.md +23 -2
  2. package/package.json +5 -5
  3. package/server.json +9 -3
package/README.md CHANGED
@@ -6,7 +6,13 @@
6
6
 
7
7
  <div align="center">
8
8
 
9
- [![Version](https://img.shields.io/badge/Version-0.1.7-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.27.1-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-^1.2.0-f472b6.svg?style=flat-square)](https://bun.sh/)
9
+ [![Version](https://img.shields.io/badge/Version-0.1.9-blue.svg?style=flat-square)](./CHANGELOG.md) [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-259?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.27.1-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.2-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-^1.2.0-f472b6.svg?style=flat-square)](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
- ### MCP Client Configuration
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.7",
3
+ "version": "0.1.9",
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,16 +62,16 @@
62
62
  "access": "public"
63
63
  },
64
64
  "dependencies": {
65
- "@cyanheads/mcp-ts-core": "^0.1.25",
65
+ "@cyanheads/mcp-ts-core": "^0.2.8",
66
66
  "pino-pretty": "^13.1.3"
67
67
  },
68
68
  "devDependencies": {
69
- "@biomejs/biome": "^2.4.8",
69
+ "@biomejs/biome": "^2.4.9",
70
70
  "@types/node": "^25.5.0",
71
71
  "depcheck": "^1.4.7",
72
72
  "ignore": "^7.0.5",
73
73
  "tsc-alias": "^1.8.16",
74
- "typescript": "^5.9.3",
75
- "vitest": "^4.1.0"
74
+ "typescript": "^6.0.2",
75
+ "vitest": "^4.1.2"
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.7",
9
+ "version": "0.1.9",
10
+ "remotes": [
11
+ {
12
+ "type": "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.7",
22
+ "version": "0.1.9",
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.7",
45
+ "version": "0.1.9",
40
46
  "packageArguments": [
41
47
  { "type": "positional", "value": "run" },
42
48
  { "type": "positional", "value": "start:http" }