From 05efb20fda6e5ff339861c364327b0a155d9a713 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Wed, 8 Apr 2026 13:10:20 +0900 Subject: [PATCH] feat(skill-mcp): add scope field to connection types --- src/features/skill-mcp-manager/types.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/features/skill-mcp-manager/types.ts b/src/features/skill-mcp-manager/types.ts index d2e77e3ae..3d2838d55 100644 --- a/src/features/skill-mcp-manager/types.ts +++ b/src/features/skill-mcp-manager/types.ts @@ -3,6 +3,7 @@ import type { StdioClientTransport } from "@modelcontextprotocol/sdk/client/stdi import type { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js" import type { ClaudeCodeMcpServer } from "../claude-code-mcp-loader/types" import type { McpOAuthProvider } from "../mcp-oauth/provider" +import type { SkillScope } from "../opencode-skill-loader/types" export type SkillMcpConfig = Record @@ -10,6 +11,7 @@ export interface SkillMcpClientInfo { serverName: string skillName: string sessionID: string + scope?: SkillScope } export interface SkillMcpServerContext {