@cyanheads/mcp-ts-core 0.1.27 → 0.1.28
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 +2 -2
- package/package.json +6 -7
- package/templates/_tsconfig.json +1 -2
- package/tsconfig.base.json +1 -2
package/CLAUDE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Agent Protocol
|
|
2
2
|
|
|
3
|
-
**Package:** `@cyanheads/mcp-ts-core` · **Version:** 0.1.
|
|
3
|
+
**Package:** `@cyanheads/mcp-ts-core` · **Version:** 0.1.28
|
|
4
4
|
**npm:** [@cyanheads/mcp-ts-core](https://www.npmjs.com/package/@cyanheads/mcp-ts-core) · **Docker:** [ghcr.io/cyanheads/mcp-ts-core](https://ghcr.io/cyanheads/mcp-ts-core)
|
|
5
5
|
|
|
6
6
|
> **Developer note:** Never assume. Read related files and docs before making changes. Read full file content for context. Never edit a file before reading it.
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
<div align="center">
|
|
7
7
|
|
|
8
|
-
[](./CHANGELOG.md) [](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-11-25/changelog.mdx) [](https://modelcontextprotocol.io/) [](./LICENSE)
|
|
9
9
|
|
|
10
|
-
[](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
11
|
|
|
12
12
|
</div>
|
|
13
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cyanheads/mcp-ts-core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.28",
|
|
4
4
|
"mcpName": "io.github.cyanheads/mcp-ts-core",
|
|
5
5
|
"description": "Agent-native TypeScript framework for building MCP servers. Build tools, not infrastructure. Declarative definitions with auth, multi-backend storage, OpenTelemetry, and first-class support for Node.js and Cloudflare Workers.",
|
|
6
6
|
"main": "dist/core/index.js",
|
|
@@ -143,8 +143,7 @@
|
|
|
143
143
|
"dotenv": "17.3.1",
|
|
144
144
|
"flatted": "3.4.2",
|
|
145
145
|
"hono": "4.12.9",
|
|
146
|
-
"zod": "4.3.6"
|
|
147
|
-
"typescript": "5.9.3"
|
|
146
|
+
"zod": "4.3.6"
|
|
148
147
|
},
|
|
149
148
|
"devDependencies": {
|
|
150
149
|
"@biomejs/biome": "2.4.8",
|
|
@@ -167,8 +166,8 @@
|
|
|
167
166
|
"@types/papaparse": "^5.5.2",
|
|
168
167
|
"@types/sanitize-html": "^2.16.1",
|
|
169
168
|
"@types/validator": "^13.15.10",
|
|
170
|
-
"@vitest/coverage-istanbul": "4.1.
|
|
171
|
-
"@vitest/ui": "4.1.
|
|
169
|
+
"@vitest/coverage-istanbul": "4.1.1",
|
|
170
|
+
"@vitest/ui": "4.1.1",
|
|
172
171
|
"bun-types": "^1.3.11",
|
|
173
172
|
"chrono-node": "^2.9.0",
|
|
174
173
|
"clipboardy": "^5.3.1",
|
|
@@ -188,7 +187,7 @@
|
|
|
188
187
|
"repomix": "^1.13.0",
|
|
189
188
|
"tsc-alias": "^1.8.16",
|
|
190
189
|
"typedoc": "^0.28.18",
|
|
191
|
-
"typescript": "^
|
|
190
|
+
"typescript": "^6.0.2",
|
|
192
191
|
"unpdf": "^1.4.0",
|
|
193
192
|
"validator": "^13.15.26",
|
|
194
193
|
"vite": "8.0.2",
|
|
@@ -268,7 +267,7 @@
|
|
|
268
267
|
"@supabase/supabase-js": "^2.99.3",
|
|
269
268
|
"chrono-node": "^2.9.0",
|
|
270
269
|
"diff": "^8.0.4",
|
|
271
|
-
"fast-xml-parser": "^5.5.
|
|
270
|
+
"fast-xml-parser": "^5.5.9",
|
|
272
271
|
"js-yaml": "^4.1.0",
|
|
273
272
|
"node-cron": "^4.2.1",
|
|
274
273
|
"openai": "^6.32.0",
|
package/templates/_tsconfig.json
CHANGED