From neely-brain-dump
MCP server installation and configuration. Use when asked to install, configure, or troubleshoot MCP servers for Claude Code or Claude Desktop.
npx claudepluginhub built-simple/claude-brain-dump-repo --plugin neely-brain-dumpThis skill uses the workspace's default tool permissions.
MCP server installation, configuration, and troubleshooting.
Manages MCP servers across coding agents like Claude Code, Cursor, VS Code: search, install via npx add-mcp or claude mcp, configure, update, remove.
Manages Model Context Protocol (MCP) servers for Claude Code projects: installs/configures .mcp.json, OAuth remotes, runtime enable/disable, troubleshooting connections.
Guides integration of Model Context Protocol (MCP) servers into Claude Code plugins via .mcp.json or plugin.json for external service tools, with scope management (local, project, user).
Share bugs, ideas, or general feedback.
MCP server installation, configuration, and troubleshooting.
| Server | Package | Purpose |
|---|---|---|
| filesystem | mcp-server-filesystem | File ops in Projects dir |
| postgres | mcp-server-postgres | PostgreSQL queries |
| ssh | ssh-mcp | SSH command execution |
| crawl4ai | crawl4ai-mcp (pip) | Web scraping (free) |
| playwright | @playwright/mcp | Browser automation |
| Client | File |
|---|---|
| Claude Code | ~/.claude.json |
| Claude Desktop | %APPDATA%\Claude\config.json |
# npm global installs
npm install -g @modelcontextprotocol/server-filesystem
npm install -g @modelcontextprotocol/server-postgres
npm install -g ssh-mcp
npm install -g @playwright/mcp
# Python
pip install crawl4ai-mcp
{
"mcpServers": {
"filesystem": {
"command": "mcp-server-filesystem",
"args": ["C:\\Users\\neely\\Projects"]
},
"postgres": {
"command": "mcp-server-postgres",
"args": ["postgresql://postgres:Password@localhost:5432/postgres"]
},
"ssh": {
"command": "ssh-mcp",
"args": []
},
"crawl4ai": {
"command": "python",
"args": ["-m", "crawl4ai_mcp"]
}
}
}
claude --debug for MCP loading errorsnpm list -g <package>mcp-server-filesystem --help