MCP Argo Server
An MCP server for running Argo workflows, written in Golang
Overview
MCP Argo Server is an MCP-compliant server designed for running Argo Workflows, implemented in Golang. It provides a lightweight CLI tool that wraps Argo Workflows using JSON-RPC over STDIN/STDOUT.
To use MCP Argo Server, open the project in a development container or clone the repository and run go mod tidy. Use make cluster to install the k3d cluster and set up Argo, then submit a test workflow using argo submit -n argo --watch ./kube/argo-hello-world.yaml.
- Lightweight CLI tool for Argo Workflows - JSON-RPC over STDIN/STDOUT for communication - Integration with Kubernetes and Argo Workflow resources - Python test client for workflow interaction
- Launching and managing Argo Workflows in Kubernetes
- Monitoring workflow status and retrieving results
- Testing workflow submissions using a Python client
Add to your AI client
Use these steps to connect MCP Argo Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-argo-server-jakkaj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-argo-server-jakkaj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-argo-server-jakkaj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-argo-server-jakkaj": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-argo-server-jakkaj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-argo-server-jakkaj": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-argo-server-jakkaj"
]
}
}
}FAQ
Is MCP Argo Server easy to set up?
Yes! It can be set up quickly using a development container or by running a few commands locally.
Can I contribute to the project?
Absolutely! Contributions are welcome, and you can submit issues and pull requests.