oh-my-opencode-slim 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/index.js CHANGED
@@ -29215,19 +29215,22 @@ function shortEmail(email5) {
29215
29215
  var websearch = {
29216
29216
  type: "remote",
29217
29217
  url: "https://mcp.exa.ai/mcp?tools=web_search_exa",
29218
- headers: process.env.EXA_API_KEY ? { "x-api-key": process.env.EXA_API_KEY } : undefined
29218
+ headers: process.env.EXA_API_KEY ? { "x-api-key": process.env.EXA_API_KEY } : undefined,
29219
+ oauth: false
29219
29220
  };
29220
29221
 
29221
29222
  // src/mcp/context7.ts
29222
29223
  var context7 = {
29223
29224
  type: "remote",
29224
- url: "https://mcp.context7.com/mcp"
29225
+ url: "https://mcp.context7.com/mcp",
29226
+ oauth: false
29225
29227
  };
29226
29228
 
29227
29229
  // src/mcp/grep-app.ts
29228
29230
  var grep_app = {
29229
29231
  type: "remote",
29230
- url: "https://mcp.grep.app"
29232
+ url: "https://mcp.grep.app",
29233
+ oauth: false
29231
29234
  };
29232
29235
 
29233
29236
  // src/mcp/index.ts
@@ -2,4 +2,5 @@ export type RemoteMcpConfig = {
2
2
  type: "remote";
3
3
  url: string;
4
4
  headers?: Record<string, string>;
5
+ oauth?: false;
5
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode-slim",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",