Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/opencode/src/mcp/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ export namespace MCP {
const mcpConfig = yield* getMcpConfig(mcpName)
if (!mcpConfig) return { status: "failed", error: "MCP config not found after auth" } as Status

return yield* createAndStore(mcpName, mcpConfig)
return yield* createAndStore(mcpName, { ...mcpConfig, enabled: true })
})

const removeAuth = Effect.fn("MCP.removeAuth")(function* (mcpName: string) {
Expand Down
Loading