fetchsandbox-mcp 0.3.1 → 0.3.2
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/dist/client.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -1
package/dist/client.js
CHANGED
|
@@ -29,7 +29,7 @@ export function getBaseUrl() {
|
|
|
29
29
|
function buildHeaders(extra) {
|
|
30
30
|
const ide = detectIde();
|
|
31
31
|
const headers = {
|
|
32
|
-
"user-agent": `fetchsandbox-mcp/0.3.
|
|
32
|
+
"user-agent": `fetchsandbox-mcp/0.3.2 (node ${process.version}; ide=${ide})`,
|
|
33
33
|
accept: "application/json",
|
|
34
34
|
...(extra ?? {}),
|
|
35
35
|
};
|
package/dist/index.js
CHANGED
|
@@ -23,7 +23,7 @@ import { listWorkflowsTool, runListWorkflows } from "./tools/list_workflows.js";
|
|
|
23
23
|
import { listRunsTool, runListRuns } from "./tools/list_runs.js";
|
|
24
24
|
import { runRunWorkflow, runWorkflowTool } from "./tools/run_workflow.js";
|
|
25
25
|
import { runRunAllWorkflows, runAllWorkflowsTool } from "./tools/run_all_workflows.js";
|
|
26
|
-
const VERSION = "0.3.
|
|
26
|
+
const VERSION = "0.3.2";
|
|
27
27
|
const server = new Server({ name: "fetchsandbox", version: VERSION }, { capabilities: { tools: {} } });
|
|
28
28
|
server.setRequestHandler(ListToolsRequestSchema, async () => ({
|
|
29
29
|
tools: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fetchsandbox-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
|
+
"mcpName": "io.github.fetchsandbox/mcp",
|
|
4
5
|
"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
6
|
"license": "MIT",
|
|
6
7
|
"author": "FetchSandbox",
|