ayush-opencode 0.2.1 → 0.2.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/index.js +3 -6
- package/dist/mcp/types.d.ts +0 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4708,24 +4708,21 @@ var exa = {
|
|
|
4708
4708
|
"mcp-remote",
|
|
4709
4709
|
"https://mcp.exa.ai/mcp?tools=web_search_exa,get_code_context_exa,crawling_exa"
|
|
4710
4710
|
],
|
|
4711
|
-
enabled: true
|
|
4712
|
-
timeout: 1e4
|
|
4711
|
+
enabled: true
|
|
4713
4712
|
};
|
|
4714
4713
|
|
|
4715
4714
|
// src/mcp/grep-app.ts
|
|
4716
4715
|
var grep_app = {
|
|
4717
4716
|
type: "remote",
|
|
4718
4717
|
url: "https://mcp.grep.app",
|
|
4719
|
-
enabled: true
|
|
4720
|
-
timeout: 1e4
|
|
4718
|
+
enabled: true
|
|
4721
4719
|
};
|
|
4722
4720
|
|
|
4723
4721
|
// src/mcp/sequential-thinking.ts
|
|
4724
4722
|
var sequentialThinking = {
|
|
4725
4723
|
type: "local",
|
|
4726
4724
|
command: ["npx", "-y", "@modelcontextprotocol/server-sequential-thinking"],
|
|
4727
|
-
enabled: true
|
|
4728
|
-
timeout: 1e4
|
|
4725
|
+
enabled: true
|
|
4729
4726
|
};
|
|
4730
4727
|
|
|
4731
4728
|
// src/mcp/index.ts
|
package/dist/mcp/types.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ export interface LocalMcpServerConfig {
|
|
|
11
11
|
type: "local";
|
|
12
12
|
command: string[];
|
|
13
13
|
enabled: boolean;
|
|
14
|
-
timeout?: number;
|
|
15
14
|
}
|
|
16
15
|
/**
|
|
17
16
|
* Remote MCP server configuration (connects to URL)
|
|
@@ -20,7 +19,6 @@ export interface RemoteMcpServerConfig {
|
|
|
20
19
|
type: "remote";
|
|
21
20
|
url: string;
|
|
22
21
|
enabled: boolean;
|
|
23
|
-
timeout?: number;
|
|
24
22
|
}
|
|
25
23
|
/**
|
|
26
24
|
* Union type for all MCP server configurations
|
package/package.json
CHANGED