Restructure Gemini extension files that were incorrectly placed at repo root. Updates script paths to reference shared claude/code/ scripts. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
601 B
JavaScript
16 lines
601 B
JavaScript
#!/usr/bin/env node
|
|
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
import { z } from 'zod';
|
|
|
|
const server = new McpServer({
|
|
name: 'host-uk-core-agent',
|
|
version: '0.1.0',
|
|
});
|
|
|
|
// Example tool - can be expanded to wrap the bash scripts if we want them as tools
|
|
// For now, most logic is in the bash scripts invoked by hooks or commands.
|
|
// We keep this minimal to satisfy the gemini-extension.json requirement.
|
|
|
|
const transport = new StdioServerTransport();
|
|
await server.connect(transport);
|