@contextvm/mcp-sdk 1.27.1-contextvm.1 → 1.27.1

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 CHANGED
@@ -126,7 +126,8 @@ This package is intended to be published as a public npm package under the [`@co
126
126
 
127
127
  - [Model Context Protocol documentation](https://modelcontextprotocol.io)
128
128
  - [MCP Specification](https://spec.modelcontextprotocol.io)
129
- - [ContextVM fork plan](sdk/FORK_PLAN.md)
129
+ - [ContextVM fork plan](docs/FORK_PLAN.md)
130
+ - [Upstream sync procedure](docs/upstream-sync.md)
130
131
 
131
132
  ## Release Workflow
132
133
 
@@ -1 +1 @@
1
- {"version":3,"file":"auth-info.d.ts","sourceRoot":"","sources":["../../../src/shared/auth-info.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IAEjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,GAAG,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACjC"}
1
+ {"version":3,"file":"auth-info.d.ts","sourceRoot":"","sources":["../../../src/shared/auth-info.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IAEjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,GAAG,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC"}
@@ -1 +1 @@
1
- {"version":3,"file":"auth-info.d.ts","sourceRoot":"","sources":["../../../src/shared/auth-info.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IAEjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,GAAG,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACjC"}
1
+ {"version":3,"file":"auth-info.d.ts","sourceRoot":"","sources":["../../../src/shared/auth-info.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,QAAQ;IACrB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd;;OAEG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB;;OAEG;IACH,MAAM,EAAE,MAAM,EAAE,CAAC;IAEjB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,QAAQ,CAAC,EAAE,GAAG,CAAC;IAEf;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACnC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextvm/mcp-sdk",
3
- "version": "1.27.1-contextvm.1",
3
+ "version": "1.27.1",
4
4
  "description": "Lightweight stdio-focused Model Context Protocol SDK for TypeScript",
5
5
  "license": "MIT",
6
6
  "author": "ContextVM",
@@ -72,6 +72,31 @@
72
72
  "import": "./dist/esm/server/stdio.js",
73
73
  "require": "./dist/cjs/server/stdio.js"
74
74
  },
75
+ "./validation": {
76
+ "types": "./dist/esm/validation/index.d.ts",
77
+ "import": "./dist/esm/validation/index.js",
78
+ "require": "./dist/cjs/validation/index.js"
79
+ },
80
+ "./validation/ajv": {
81
+ "types": "./dist/esm/validation/ajv-provider.d.ts",
82
+ "import": "./dist/esm/validation/ajv-provider.js",
83
+ "require": "./dist/cjs/validation/ajv-provider.js"
84
+ },
85
+ "./validation/cfworker": {
86
+ "types": "./dist/esm/validation/cfworker-provider.d.ts",
87
+ "import": "./dist/esm/validation/cfworker-provider.js",
88
+ "require": "./dist/cjs/validation/cfworker-provider.js"
89
+ },
90
+ "./inMemory": {
91
+ "types": "./dist/esm/inMemory.d.ts",
92
+ "import": "./dist/esm/inMemory.js",
93
+ "require": "./dist/cjs/inMemory.js"
94
+ },
95
+ "./inMemory.js": {
96
+ "types": "./dist/esm/inMemory.d.ts",
97
+ "import": "./dist/esm/inMemory.js",
98
+ "require": "./dist/cjs/inMemory.js"
99
+ },
75
100
  "./experimental": {
76
101
  "types": "./dist/esm/experimental/index.d.ts",
77
102
  "import": "./dist/esm/experimental/index.js",
@@ -81,6 +106,11 @@
81
106
  "types": "./dist/esm/experimental/tasks/index.d.ts",
82
107
  "import": "./dist/esm/experimental/tasks/index.js",
83
108
  "require": "./dist/cjs/experimental/tasks/index.js"
109
+ },
110
+ "./*": {
111
+ "types": "./dist/esm/*.d.ts",
112
+ "import": "./dist/esm/*",
113
+ "require": "./dist/cjs/*"
84
114
  }
85
115
  },
86
116
  "typesVersions": {
@@ -109,6 +139,21 @@
109
139
  "server/stdio": [
110
140
  "./dist/esm/server/stdio.d.ts"
111
141
  ],
142
+ "validation": [
143
+ "./dist/esm/validation/index.d.ts"
144
+ ],
145
+ "validation/ajv": [
146
+ "./dist/esm/validation/ajv-provider.d.ts"
147
+ ],
148
+ "validation/cfworker": [
149
+ "./dist/esm/validation/cfworker-provider.d.ts"
150
+ ],
151
+ "inMemory": [
152
+ "./dist/esm/inMemory.d.ts"
153
+ ],
154
+ "inMemory.js": [
155
+ "./dist/esm/inMemory.d.ts"
156
+ ],
112
157
  "experimental": [
113
158
  "./dist/esm/experimental/index.d.ts"
114
159
  ],
@@ -132,8 +177,8 @@
132
177
  "build:cjs": "mkdir -p dist/cjs && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json && tsc -p tsconfig.cjs.json",
133
178
  "build:cjs:w": "npm run build:cjs -- -w",
134
179
  "prepack": "npm run build:esm && npm run build:cjs",
135
- "lint": "eslint src/ && prettier --check .",
136
- "lint:fix": "eslint src/ --fix && prettier --write .",
180
+ "lint": "eslint src/ && prettier --check ./src",
181
+ "lint:fix": "eslint src/ --fix && prettier --write ./src",
137
182
  "check": "npm run typecheck && npm run lint",
138
183
  "test": "vitest run",
139
184
  "test:watch": "vitest"