Jenkins MCP Server Plugin vs kubefwd
A side-by-side comparison of two DevOps & Cloud servers — tools, transport, auth, maintenance, and copy-paste config for each.
| Jenkins MCP Server Plugin Official Jenkins plugin that turns your controller into an MCP server — agents query jobs, trigger builds, read logs. Unverified HTTP (remote) API key Java | kubefwd Bulk Kubernetes port forwarding with an MCP server that lets AI assistants forward services, inspect pods, and monitor traffic. Unverified stdio (local) No auth Go | |
|---|---|---|
| Category | DevOps & Cloud | DevOps & Cloud |
| Language | Java | Go |
| Transport | HTTP (remote) | stdio (local) |
| Auth | API key | None |
| GitHub stars | 95 | 4.1k |
| Last commit | 3 days ago | 14 days ago |
| Verified | ||
| Actively maintained | ||
| Install | claude mcp add jenkins http://jenkins-host/mcp-server/mcp --transport http --header "Authorization: Basic <user:token base64>" | brew install kubefwd |
| Repo | Open | Open |
Verdict
Pick Jenkins MCP Server Plugin if you want a hosted/remote server with nothing to install.
Pick kubefwd if you prefer the more popular, battle-tested option, and you want a local (stdio) server that keeps data on your machine.
Add Jenkins MCP Server Plugin
claude mcp add jenkins http://jenkins-host/mcp-server/mcp --transport http --header "Authorization: Basic <user:token base64>"Paste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"jenkins-mcp-server-plugin": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://<your-jenkins-host>/mcp-server/mcp",
"--header",
"Authorization: Basic <base64 of username:api-token>"
]
}
}
}Claude Desktop connects to remote servers through the `mcp-remote` proxy (installed on first run via npx). Restart Claude Desktop after saving.
Add kubefwd
brew install kubefwdPaste into ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"kubefwd": {
"command": "kubefwd",
"args": [
"mcp"
]
}
}
}FAQ
Jenkins MCP Server Plugin or kubefwd — which is better?
Pick Jenkins MCP Server Plugin if you want a hosted/remote server with nothing to install. Pick kubefwd if you prefer the more popular, battle-tested option, and you want a local (stdio) server that keeps data on your machine.
Can I use both Jenkins MCP Server Plugin and kubefwd?
Yes — MCP clients let you enable multiple servers at once. Add both configs to your client's mcpServers and use whichever tool fits the task.
Do Jenkins MCP Server Plugin and kubefwd work with Claude, Cursor and Windsurf?
Both do. Copy the per-client config below into Claude Desktop, Cursor, or Windsurf.