@cyanheads/pubchem-mcp-server 0.1.19 → 0.1.20
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 +12 -3
- package/manifest.json +34 -0
- package/package.json +14 -6
- package/server.json +3 -3
package/README.md
CHANGED
|
@@ -1,12 +1,21 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<h1>@cyanheads/pubchem-mcp-server</h1>
|
|
3
|
-
<p><b>MCP server for the PubChem chemical database. Search compounds, fetch properties, safety data, bioactivity, cross-references, and entity summaries. STDIO & Streamable HTTP
|
|
4
|
-
<
|
|
3
|
+
<p><b>MCP server for the PubChem chemical database. Search compounds, fetch properties, safety data, bioactivity, cross-references, and entity summaries. STDIO & Streamable HTTP.</b>
|
|
4
|
+
<div>8 Tools</div>
|
|
5
|
+
</p>
|
|
5
6
|
</div>
|
|
6
7
|
|
|
7
8
|
<div align="center">
|
|
8
9
|
|
|
9
|
-
[](./CHANGELOG.md) [](./LICENSE) [](https://github.com/users/cyanheads/packages/container/package/pubchem-mcp-server) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/pubchem-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
|
+
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div align="center">
|
|
15
|
+
|
|
16
|
+
[](https://github.com/cyanheads/pubchem-mcp-server/releases/latest/download/pubchem-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=pubchem-mcp-server&config=eyJ0eXBlIjoic3RkaW8iLCJjb21tYW5kIjoiYnVueCIsImFyZ3MiOlsiQGN5YW5oZWFkcy9wdWJjaGVtLW1jcC1zZXJ2ZXJAbGF0ZXN0Il0sImVudiI6eyJNQ1BfVFJBTlNQT1JUX1RZUEUiOiJzdGRpbyIsIk1DUF9MT0dfTEVWRUwiOiJpbmZvIn19) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22pubchem-mcp-server%22%2C%22config%22%3A%7B%22type%22%3A%22stdio%22%2C%22command%22%3A%22bunx%22%2C%22args%22%3A%5B%22%40cyanheads%2Fpubchem-mcp-server%40latest%22%5D%2C%22env%22%3A%7B%22MCP_TRANSPORT_TYPE%22%3A%22stdio%22%2C%22MCP_LOG_LEVEL%22%3A%22info%22%7D%7D%7D)
|
|
17
|
+
|
|
18
|
+
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
10
19
|
|
|
11
20
|
</div>
|
|
12
21
|
|
package/manifest.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": "0.3",
|
|
3
|
+
"name": "pubchem-mcp-server",
|
|
4
|
+
"version": "0.1.20",
|
|
5
|
+
"description": "Search PubChem compounds, properties, safety data, bioactivity, cross-references, and entity summaries via MCP.",
|
|
6
|
+
"author": { "name": "cyanheads" },
|
|
7
|
+
"server": {
|
|
8
|
+
"type": "node",
|
|
9
|
+
"entry_point": "dist/index.js",
|
|
10
|
+
"mcp_config": {
|
|
11
|
+
"command": "node",
|
|
12
|
+
"args": ["${__dirname}/dist/index.js"],
|
|
13
|
+
"env": {
|
|
14
|
+
"MCP_TRANSPORT_TYPE": "stdio",
|
|
15
|
+
"MCP_AUTH_MODE": "none",
|
|
16
|
+
"NODE_ENV": "production"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"compatibility": {
|
|
21
|
+
"runtimes": { "node": ">=24.0.0" }
|
|
22
|
+
},
|
|
23
|
+
"tools_generated": true,
|
|
24
|
+
"prompts_generated": true,
|
|
25
|
+
"user_config": {
|
|
26
|
+
"MCP_LOG_LEVEL": {
|
|
27
|
+
"title": "Log Level",
|
|
28
|
+
"description": "Minimum log level for output (debug, info, warn, error).",
|
|
29
|
+
"type": "string",
|
|
30
|
+
"default": "info",
|
|
31
|
+
"required": false
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
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.20",
|
|
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",
|
|
@@ -9,15 +9,22 @@
|
|
|
9
9
|
"bin": {
|
|
10
10
|
"pubchem-mcp-server": "dist/index.js"
|
|
11
11
|
},
|
|
12
|
-
"files": ["dist/", "README.md", "LICENSE", "server.json", "Dockerfile"],
|
|
12
|
+
"files": ["dist/", "README.md", "LICENSE", "server.json", "manifest.json", "Dockerfile"],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "bun scripts/build.ts",
|
|
15
15
|
"rebuild": "bun scripts/clean.ts && bun scripts/build.ts",
|
|
16
16
|
"clean": "bun scripts/clean.ts",
|
|
17
17
|
"devcheck": "bun scripts/devcheck.ts",
|
|
18
|
+
"audit:refresh": "rm -f bun.lock && bun install && bun audit",
|
|
18
19
|
"tree": "bun scripts/tree.ts",
|
|
20
|
+
"list-skills": "bun scripts/list-skills.ts",
|
|
19
21
|
"format": "biome check --write --unsafe .",
|
|
20
22
|
"lint:mcp": "bun scripts/lint-mcp.ts",
|
|
23
|
+
"lint:packaging": "bun scripts/lint-packaging.ts",
|
|
24
|
+
"bundle": "bun run build && npx -y @anthropic-ai/mcpb pack . dist/pubchem-mcp-server.mcpb",
|
|
25
|
+
"changelog:build": "bun scripts/build-changelog.ts",
|
|
26
|
+
"changelog:check": "bun scripts/build-changelog.ts --check",
|
|
27
|
+
"publish-mcp": "mcp-publisher publish",
|
|
21
28
|
"test": "vitest run",
|
|
22
29
|
"start:stdio": "node dist/index.js",
|
|
23
30
|
"start:http": "MCP_TRANSPORT_TYPE=http node dist/index.js"
|
|
@@ -60,16 +67,17 @@
|
|
|
60
67
|
"access": "public"
|
|
61
68
|
},
|
|
62
69
|
"dependencies": {
|
|
63
|
-
"@cyanheads/mcp-ts-core": "^0.9.
|
|
64
|
-
"pino-pretty": "^13.1.3"
|
|
70
|
+
"@cyanheads/mcp-ts-core": "^0.9.6",
|
|
71
|
+
"pino-pretty": "^13.1.3",
|
|
72
|
+
"zod": "^4.4.3"
|
|
65
73
|
},
|
|
66
74
|
"devDependencies": {
|
|
67
75
|
"@biomejs/biome": "^2.4.15",
|
|
68
|
-
"@types/node": "^25.
|
|
76
|
+
"@types/node": "^25.9.1",
|
|
69
77
|
"depcheck": "^1.4.7",
|
|
70
78
|
"ignore": "^7.0.5",
|
|
71
79
|
"tsc-alias": "^1.8.17",
|
|
72
80
|
"typescript": "^6.0.3",
|
|
73
|
-
"vitest": "^4.1.
|
|
81
|
+
"vitest": "^4.1.7"
|
|
74
82
|
}
|
|
75
83
|
}
|
package/server.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"url": "https://github.com/cyanheads/pubchem-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.20",
|
|
10
10
|
"remotes": [
|
|
11
11
|
{
|
|
12
12
|
"type": "streamable-http",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
20
20
|
"identifier": "@cyanheads/pubchem-mcp-server",
|
|
21
21
|
"runtimeHint": "bun",
|
|
22
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.20",
|
|
23
23
|
"packageArguments": [
|
|
24
24
|
{ "type": "positional", "value": "run" },
|
|
25
25
|
{ "type": "positional", "value": "start:stdio" }
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
43
43
|
"identifier": "@cyanheads/pubchem-mcp-server",
|
|
44
44
|
"runtimeHint": "bun",
|
|
45
|
-
"version": "0.1.
|
|
45
|
+
"version": "0.1.20",
|
|
46
46
|
"packageArguments": [
|
|
47
47
|
{ "type": "positional", "value": "run" },
|
|
48
48
|
{ "type": "positional", "value": "start:http" }
|