@nekuda/webmcp-sdk 0.7.0 → 0.7.1-dev.23.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/CHANGELOG.md +5 -0
- package/LICENSE +21 -0
- package/README.md +4 -0
- package/dist/index.js +2 -2
- package/package.json +9 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.1 — 2026-09-22
|
|
4
|
+
|
|
5
|
+
- The package is licensed under the MIT License: `license: "MIT"` in `package.json`
|
|
6
|
+
and a `LICENSE` file in the package. No code change.
|
|
7
|
+
|
|
3
8
|
## 0.7.0 — 2026-09-21
|
|
4
9
|
|
|
5
10
|
One change, made twice: a page load costs the ingest edge one request instead of
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 nekuda
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -136,7 +136,7 @@ function resolveModelContext(scope = globalThis) {
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
// src/transport.ts
|
|
139
|
-
var INGEST_BASE = "https://ingest.agentlane.
|
|
139
|
+
var INGEST_BASE = "https://ingest.agentlane.dev";
|
|
140
140
|
var DEFAULT_COLLECT_ENDPOINT = `${INGEST_BASE}/v1/collect`;
|
|
141
141
|
var DEFAULT_TELEMETRY_ENDPOINT = `${INGEST_BASE}/v1/telemetry`;
|
|
142
142
|
function tryFetch(scope, url, headers, json, onResponse) {
|
|
@@ -1114,7 +1114,7 @@ function shapeMetrics(inputSchema) {
|
|
|
1114
1114
|
|
|
1115
1115
|
// src/telemetry.ts
|
|
1116
1116
|
var SDK_NAME = "@nekuda/webmcp-sdk";
|
|
1117
|
-
var SDK_VERSION = "0.7.
|
|
1117
|
+
var SDK_VERSION = "0.7.1-dev.23.1";
|
|
1118
1118
|
var INSTALL_MODES = ["npm", "cdn_snippet"];
|
|
1119
1119
|
var SDK_INSTALL_MODE = INSTALL_MODES.find((mode) => mode === (typeof __WEBMCP_INSTALL_MODE__ === "string" ? __WEBMCP_INSTALL_MODE__ : "")) ?? "npm";
|
|
1120
1120
|
function parseSampleRate(raw) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nekuda/webmcp-sdk",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1-dev.23.1",
|
|
4
|
+
"license": "MIT",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"description": "Let AI agents use your website: define tools once and register them through WebMCP, with page-scoped tools, SPA navigation and unsupported browsers handled for you.",
|
|
6
7
|
"main": "./dist/index.js",
|
|
@@ -11,7 +12,10 @@
|
|
|
11
12
|
"default": "./dist/index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
|
-
"files": [
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"CHANGELOG.md"
|
|
18
|
+
],
|
|
15
19
|
"publishConfig": {
|
|
16
20
|
"access": "public"
|
|
17
21
|
},
|
|
@@ -36,5 +40,7 @@
|
|
|
36
40
|
"optional": true
|
|
37
41
|
}
|
|
38
42
|
},
|
|
39
|
-
"trustedDependencies": [
|
|
43
|
+
"trustedDependencies": [
|
|
44
|
+
"@biomejs/biome"
|
|
45
|
+
]
|
|
40
46
|
}
|