Initial commit: Fresh start with current state

This commit is contained in:
Claude Code
2025-11-06 14:04:48 +01:00
commit 15355c35ea
20152 changed files with 1191077 additions and 0 deletions

81
.mcp.json Normal file
View File

@@ -0,0 +1,81 @@
{
"mcpServers": {
"serena": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server",
"--context",
"ide-assistant",
"--project",
"Foundry"
]
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
},
"database-server": {
"command": "npx",
"args": [
"-y",
"@executeautomation/database-server",
"--sqlserver",
"--server", "CS-UL-2560",
"--database", "TestDB",
"--user", "admin",
"--password", "${DB_PASSWORD}",
"--trustServerCertificate"
],
"env": {
"DB_PASSWORD": "1"
}
},
"context7": {
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp"
],
"env": {
"CONTEXT7_API_KEY": "ctx7sk-5515b694-54fc-442a-bd61-fa69fa8e6f1a"
}
},
"memory": {
"command": "powershell",
"args": [
"-ExecutionPolicy",
"Bypass",
"-File",
".\\.claude\\tools\\start-memory.ps1"
]
},
"fetch": {
"command": "uvx",
"args": [
"mcp-server-fetch"
]
},
"windows-mcp": {
"command": "uv",
"args": [
"--directory",
"./.windows-mcp",
"run",
"main.py"
]
},
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
}