1
0
mirror of https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git synced 2025-09-15 09:45:58 +03:00

feat(ai): 🤖 Add MCP servers for shadcn, docker, n8n, coolify, and appwrite

Add new Model Context Protocol server configurations:
- **shadcn**: shadcn/ui MCP server using npx
- **docker**: Docker MCP server with custom Python path
- **n8n**: n8n workflow automation server with API configuration
- **coolify**: Coolify deployment platform MCP server
- **appwrite**: Appwrite backend server with full resource access

Each server includes appropriate environment variables for API keys and
endpoint configuration, following existing MCP server patterns in the
configuration file.
This commit is contained in:
xnm
2025-08-24 21:06:53 +03:00
parent c4f4b80836
commit 4556f66ab2

View File

@@ -37,6 +37,13 @@
"@playwright/mcp" "@playwright/mcp"
] ]
}, },
"shadcn": {
"type": "stdio",
"command": "npx",
"args": [
"@heilgar/shadcn-ui-mcp-server"
]
},
"searxng": { "searxng": {
"type": "stdio", "type": "stdio",
"command": "npx", "command": "npx",
@@ -57,6 +64,15 @@
"mcp-server-git" "mcp-server-git"
] ]
}, },
"docker": {
"type": "stdio",
"command": "uvx",
"args": [
"--python",
"/run/current-system/sw/bin/python",
"docker-mcp"
]
},
"time": { "time": {
"type": "stdio", "type": "stdio",
"command": "uvx", "command": "uvx",
@@ -98,6 +114,45 @@
"@modelcontextprotocol/server-filesystem", "@modelcontextprotocol/server-filesystem",
"/home/xnm" "/home/xnm"
] ]
},
"n8n": {
"type": "stdio",
"command": "npx",
"args": [
"n8n-mcp"
],
"env": {
"MCP_MODE": "stdio",
"LOG_LEVEL": "error",
"DISABLE_CONSOLE_OUTPUT": "true",
"N8N_API_URL": "localhost:5678",
"N8N_API_KEY": "your-api-key"
}
},
"coolify": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@masonator/coolify-mcp"
],
"env": {
"COOLIFY_ACCESS_TOKEN": "0|your-secret-token",
"COOLIFY_BASE_URL": "localhost:8000"
}
},
"appwrite": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-server-appwrite",
"--all"
],
"env": {
"APPWRITE_PROJECT_ID": "your-project-id",
"APPWRITE_API_KEY": "your-api-key",
"APPWRITE_ENDPOINT": "localhost:8088/v1"
}
} }
} }
} }