@cyanheads/calculator-mcp-server 0.1.6 → 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/CLAUDE.md +1 -1
- package/README.md +27 -2
- package/package.json +14 -4
- package/server.json +10 -4
package/CLAUDE.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
3
|
**Server:** calculator-mcp-server
|
|
4
|
-
**Version:** 0.1.
|
|
4
|
+
**Version:** 0.1.8
|
|
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
|
@@ -6,7 +6,17 @@
|
|
|
6
6
|
|
|
7
7
|
<div align="center">
|
|
8
8
|
|
|
9
|
-
[](https://www.npmjs.com/package/@cyanheads/calculator-mcp-server)
|
|
10
|
+
[](https://github.com/users/cyanheads/packages/container/package/calculator-mcp-server)
|
|
11
|
+
[](./CHANGELOG.md) [](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
12
|
+
|
|
13
|
+
[](https://modelcontextprotocol.io/) [](./LICENSE) [](https://www.typescriptlang.org/)
|
|
14
|
+
|
|
15
|
+
</div>
|
|
16
|
+
|
|
17
|
+
<div align="center">
|
|
18
|
+
|
|
19
|
+
**Public Hosted Server:** [https://calculator.caseyjhand.com/mcp](https://calculator.caseyjhand.com/mcp)
|
|
10
20
|
|
|
11
21
|
</div>
|
|
12
22
|
|
|
@@ -61,7 +71,22 @@ Calculator-specific:
|
|
|
61
71
|
|
|
62
72
|
## Getting Started
|
|
63
73
|
|
|
64
|
-
###
|
|
74
|
+
### Public Hosted Instance
|
|
75
|
+
|
|
76
|
+
A public instance is available at `https://calculator.caseyjhand.com/mcp` — no installation required. Point any MCP client at it via Streamable HTTP:
|
|
77
|
+
|
|
78
|
+
```json
|
|
79
|
+
{
|
|
80
|
+
"mcpServers": {
|
|
81
|
+
"calculator": {
|
|
82
|
+
"type": "streamable-http",
|
|
83
|
+
"url": "https://calculator.caseyjhand.com/mcp"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
### Self-Hosted / Local
|
|
65
90
|
|
|
66
91
|
Add to your MCP client config (e.g., `claude_desktop_config.json`):
|
|
67
92
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/calculator-mcp-server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"description": "Calculator MCP server — evaluate, simplify, and differentiate math expressions.",
|
|
5
5
|
"mcpName": "io.github.cyanheads/calculator-mcp-server",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -42,8 +42,18 @@
|
|
|
42
42
|
"bugs": {
|
|
43
43
|
"url": "https://github.com/cyanheads/calculator-mcp-server/issues"
|
|
44
44
|
},
|
|
45
|
-
"author": "cyanheads (https://github.com/cyanheads)",
|
|
45
|
+
"author": "cyanheads <casey@caseyjhand.com> (https://github.com/cyanheads/calculator-mcp-server#readme)",
|
|
46
46
|
"license": "Apache-2.0",
|
|
47
|
+
"funding": [
|
|
48
|
+
{
|
|
49
|
+
"type": "github",
|
|
50
|
+
"url": "https://github.com/sponsors/cyanheads"
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "buy_me_a_coffee",
|
|
54
|
+
"url": "https://www.buymeacoffee.com/cyanheads"
|
|
55
|
+
}
|
|
56
|
+
],
|
|
47
57
|
"engines": {
|
|
48
58
|
"node": ">=22.0.0",
|
|
49
59
|
"bun": ">=1.2.0"
|
|
@@ -58,7 +68,7 @@
|
|
|
58
68
|
"pino-pretty": "^13.1.3"
|
|
59
69
|
},
|
|
60
70
|
"devDependencies": {
|
|
61
|
-
"@biomejs/biome": "^2.4.
|
|
71
|
+
"@biomejs/biome": "^2.4.10",
|
|
62
72
|
"@types/node": "^25.5.0",
|
|
63
73
|
"depcheck": "^1.4.7",
|
|
64
74
|
"ignore": "^7.0.5",
|
package/server.json
CHANGED
|
@@ -1,19 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
3
|
"name": "io.github.cyanheads/calculator-mcp-server",
|
|
4
|
-
"description": "Calculator MCP server — evaluate, simplify, and differentiate math expressions.
|
|
4
|
+
"description": "Calculator MCP server — evaluate, simplify, and differentiate math expressions.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/cyanheads/calculator-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.8",
|
|
10
|
+
"remotes": [
|
|
11
|
+
{
|
|
12
|
+
"type": "streamable-http",
|
|
13
|
+
"url": "https://calculator.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/calculator-mcp-server",
|
|
15
21
|
"runtimeHint": "bun",
|
|
16
|
-
"version": "0.1.
|
|
22
|
+
"version": "0.1.8",
|
|
17
23
|
"packageArguments": [
|
|
18
24
|
{
|
|
19
25
|
"type": "positional",
|
|
@@ -63,7 +69,7 @@
|
|
|
63
69
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
64
70
|
"identifier": "@cyanheads/calculator-mcp-server",
|
|
65
71
|
"runtimeHint": "bun",
|
|
66
|
-
"version": "0.1.
|
|
72
|
+
"version": "0.1.8",
|
|
67
73
|
"packageArguments": [
|
|
68
74
|
{
|
|
69
75
|
"type": "positional",
|