Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 26m43s
- 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.
31 lines
609 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|