Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/mcp-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@corbits/mcp-tools",
"private": true,
"description": "Generic MCP server integration: connect any Streamable HTTP MCP server through Plugins and its tools become reachable by any agent via mcp_list_servers/mcp_list_tools/mcp_call",
"version": "0.0.4",
"version": "0.0.5",
"license": "LGPL-2.1-or-later",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion workflows/assistant/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const ASSISTANT_TOOL_PACKAGE_PINS: readonly ToolPackagePin[] = [
{ name: "@corbits/connections-tools", version: "0.0.4" },
{ name: "@corbits/catalog-tools", version: "0.0.1" },
{ name: "@corbits/skills-tools", version: "0.0.5" },
{ name: "@corbits/mcp-tools", version: "0.0.4" },
{ name: "@corbits/mcp-tools", version: "0.0.5" },
{ name: "@corbits/interaction-tools", version: "0.0.2" },
];

Expand Down
2 changes: 1 addition & 1 deletion workflows/attio-task-agent/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export const ATTIO_TASK_AGENT_SYSTEM_PROMPT = buildAttioTaskAgentSystemPrompt({
* deploy of this package itself.
*/
export const ATTIO_TASK_AGENT_TOOL_PACKAGE_PINS: readonly ToolPackagePin[] = [
{ name: "@corbits/mcp-tools", version: "0.0.4" },
{ name: "@corbits/mcp-tools", version: "0.0.5" },
];

/**
Expand Down
2 changes: 1 addition & 1 deletion workflows/attio-task-agent/test/definition.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ test("one MCP pin covers the CRM, past calls, and the web — the OG needed thre
const agent = workStep(buildAttioTaskAgentWorkflow(INPUT)).agent;
expect(agent.toolPackagePins).toEqual(ATTIO_TASK_AGENT_TOOL_PACKAGE_PINS);
expect(ATTIO_TASK_AGENT_TOOL_PACKAGE_PINS).toEqual([
{ name: "@corbits/mcp-tools", version: "0.0.4" },
{ name: "@corbits/mcp-tools", version: "0.0.5" },
]);
});

Expand Down
2 changes: 1 addition & 1 deletion workflows/exa-topic-watch/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export const EXA_TOPIC_WATCH_SYSTEM_PROMPT = [
* travels with the deploy of this package itself.
*/
export const EXA_TOPIC_WATCH_TOOL_PACKAGE_PINS: readonly ToolPackagePin[] = [
{ name: "@corbits/mcp-tools", version: "0.0.4" },
{ name: "@corbits/mcp-tools", version: "0.0.5" },
];

/**
Expand Down
2 changes: 1 addition & 1 deletion workflows/exa-topic-watch/test/definition.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ test("the step pins the MCP tools bundle, the one package a deploy here can reso
const agent = digestStep(buildExaTopicWatchWorkflow(INPUT)).agent;
expect(agent.toolPackagePins).toEqual(EXA_TOPIC_WATCH_TOOL_PACKAGE_PINS);
expect(EXA_TOPIC_WATCH_TOOL_PACKAGE_PINS).toEqual([
{ name: "@corbits/mcp-tools", version: "0.0.4" },
{ name: "@corbits/mcp-tools", version: "0.0.5" },
]);
});

Expand Down
Loading