@@ -1,6 +1,6 @@
{
"name": "oh-my-opencode-slim",
- "version": "0.3.1",
+ "version": "0.3.2",
"description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -7,4 +7,5 @@ import type { RemoteMcpConfig } from "./types";
export const context7: RemoteMcpConfig = {
type: "remote",
url: "https://mcp.context7.com/mcp",
+ oauth: false,
};
export const grep_app: RemoteMcpConfig = {
url: "https://mcp.grep.app",
@@ -4,4 +4,5 @@ export type RemoteMcpConfig = {
type: "remote";
url: string;
headers?: Record<string, string>;
+ oauth?: false;
@@ -10,4 +10,5 @@ export const websearch: RemoteMcpConfig = {
headers: process.env.EXA_API_KEY
? { "x-api-key": process.env.EXA_API_KEY }
: undefined,