Files
oh-my-opencode/dist/mcp/index.d.ts
T
2026-03-14 04:56:50 +00:00

11 lines
389 B
TypeScript

import type { OhMyOpenCodeConfig } from "../config/schema";
export { McpNameSchema, type McpName } from "./types";
type RemoteMcpConfig = {
type: "remote";
url: string;
enabled: boolean;
headers?: Record<string, string>;
oauth?: false;
};
export declare function createBuiltinMcps(disabledMcps?: string[], config?: OhMyOpenCodeConfig): Record<string, RemoteMcpConfig>;