Files
nuxt-claude/.mcp.json
NEW_GIL_HOME\hyeon d594bf5a67
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 26m43s
feat: add MCP configuration and update login page design
- Introduced a new `.mcp.json` file for server configurations.
- Updated `package.json` to include the `shadcn` dependency.
- Modified `pnpm-lock.yaml` to reflect the new dependency.
- Adjusted `.claude/settings.local.json` to disable specific MCP servers.
- Enhanced the login page design in `login.vue` with improved layout and user experience elements.
2026-03-08 17:26:33 +09:00

31 lines
609 B
JSON

{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp"
},
"playwright": {
"type": "stdio",
"command": "cmd",
"args": ["/c", "npx", "@playwright/mcp@latest"],
"env": {}
},
"sequential-thinking": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"env": {}
},
"shadcn": {
"type": "stdio",
"command": "cmd",
"args": ["/c", "npx", "shadcn@latest", "mcp"]
}
}
}