Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:16:51 +08:00
commit 4e8a12140c
88 changed files with 17078 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
{
"mcpServers": {
"weather": {
"command": "node",
"args": [
"/Users/username/projects/mcp-weather-server/build/index.js"
]
},
"database": {
"command": "node",
"args": [
"/Users/username/projects/mcp-database-server/build/index.js"
],
"env": {
"DATABASE_URL": "postgresql://user:pass@localhost:5432/mydb"
}
},
"python-server": {
"command": "uv",
"args": [
"--directory",
"/Users/username/projects/mcp-python-server",
"run",
"main.py"
],
"env": {
"API_KEY": "your_api_key_here"
}
},
"filesystem": {
"command": "node",
"args": [
"/Users/username/projects/mcp-filesystem-server/build/index.js"
],
"env": {
"ALLOWED_DIRECTORIES": "/Users/username/Documents,/Users/username/Projects"
}
}
}
}