first commit
This commit is contained in:
25
shims/ant-claude-for-chrome-mcp/index.ts
Normal file
25
shims/ant-claude-for-chrome-mcp/index.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
export type PermissionMode =
|
||||
| 'ask'
|
||||
| 'skip_all_permission_checks'
|
||||
| 'follow_a_plan'
|
||||
|
||||
export type Logger = {
|
||||
info(message: string): void
|
||||
warn(message: string): void
|
||||
error(message: string): void
|
||||
}
|
||||
|
||||
export type ClaudeForChromeContext = {
|
||||
serverName?: string
|
||||
logger?: Logger
|
||||
}
|
||||
|
||||
export const BROWSER_TOOLS: Array<{ name: string }> = []
|
||||
|
||||
export function createClaudeForChromeMcpServer(_context: ClaudeForChromeContext) {
|
||||
return {
|
||||
async connect() {},
|
||||
setRequestHandler() {},
|
||||
async close() {},
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user