AI Development Environment
Quick local setup for coding with file access and AI tools.
Config
Section titled “Config”{ "$schema": "https://raw.githubusercontent.com/himorishige/hatago-hub/main/schemas/config.schema.json", "version": 1, "logLevel": "info", "mcpServers": { "fs": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "."], "tags": ["dev", "local"] }, "github": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-github"], "env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }, "tags": ["dev", "vcs"] }, "openai": { "url": "https://api.openai.com/v1/mcp", "type": "http", "headers": { "Authorization": "Bearer ${OPENAI_API_KEY}" }, "tags": ["ai", "remote"] } }}
hatago serve --tags dev --verbose
- Add your preferred LLM server
- Use tag sets like
dev,ai
to toggle AI tools