fetchsandbox-mcp 0.1.0 → 0.1.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 +3 -3
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ workflow_name: "<id or name from list_workflows>"
|
|
|
82
82
|
|
|
83
83
|
### What we record
|
|
84
84
|
|
|
85
|
-
When telemetry is on, each tool call records: an opaque per-machine session id (random UUID stored at `~/.fetchsandbox/session.json`), the tool name, latency, success/failure, and the spec URL or `"pasted"`. We do **not** record spec content, request bodies, or credentials. We use this to count daily-active sessions and learn which APIs people are bringing to the platform
|
|
85
|
+
When telemetry is on, each tool call records: an opaque per-machine session id (random UUID stored at `~/.fetchsandbox/session.json`), the tool name, latency, success/failure, and the spec URL or `"pasted"`. We do **not** record spec content, request bodies, or credentials. We use this to count daily-active sessions and learn which APIs people are bringing to the platform.
|
|
86
86
|
|
|
87
87
|
To opt out:
|
|
88
88
|
|
|
@@ -107,5 +107,5 @@ MIT — see [LICENSE](LICENSE).
|
|
|
107
107
|
## Links
|
|
108
108
|
|
|
109
109
|
- [FetchSandbox](https://fetchsandbox.com)
|
|
110
|
-
- [Source code](https://github.com/
|
|
111
|
-
- [Issues](https://github.com/
|
|
110
|
+
- [Source code](https://github.com/fetchsandbox/mcp)
|
|
111
|
+
- [Issues](https://github.com/fetchsandbox/mcp/issues)
|
package/package.json
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fetchsandbox-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Turn any OpenAPI spec into a working sandbox your AI agent can use. MCP server for Claude Code, Cursor, and any other MCP-compatible LLM IDE.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "FetchSandbox",
|
|
7
7
|
"homepage": "https://fetchsandbox.com",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
11
|
-
|
|
10
|
+
"url": "git+https://github.com/fetchsandbox/mcp.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/fetchsandbox/mcp/issues"
|
|
12
14
|
},
|
|
13
15
|
"keywords": [
|
|
14
16
|
"mcp",
|