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 +6 -3
- package/dist/mcp/types.d.ts +1 -0
- package/package.json +1 -1
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
|
package/dist/mcp/types.d.ts
CHANGED
package/package.json
CHANGED