Skip to main content

MCP Read-Only Argo CD Server

Tests License: MIT Python 3.11+

A secure MCP (Model Context Protocol) server that provides read-only access to Argo CD instances using browser session cookies.

Default layout:

  • Config: ~/.config/lukleh/mcp-read-only-argocd/connections.yaml
  • Credentials: stored in connections.yaml
  • Cache: ~/.cache/lukleh/mcp-read-only-argocd/

Features

  • Read-only by design: only read operations are exposed
  • Session cookie authentication: uses your existing argocd.token browser session
  • Multi-instance support: connect to multiple Argo CD instances at once
  • Automatic cookie rotation: refreshed session cookies are persisted to connections.yaml
  • Stale token recovery: a 401 response triggers a one-time Chrome cookie refresh and retry
  • Package-native runtime paths: no repository checkout required for normal use

Why Session Cookies?

Unlike token-based setups, this server can reuse your existing browser session:

  • no extra API token management
  • uses your existing SSO/OIDC login
  • matches the permissions you already have in the UI

Prerequisites

  • Python 3.11 or higher
  • uv
  • an Argo CD browser session cookie
  • an MCP client such as Claude Code or Codex

Quick Start

1. Install the Server

# Run the published package without cloning the repository
uvx mcp-read-only-argocd@latest --write-sample-config

# Or install it once and reuse the command directly
uv tool install mcp-read-only-argocd
mcp-read-only-argocd --write-sample-config

When using uvx, prefer mcp-read-only-argocd@latest in user-facing docs and MCP client configs. This avoids reusing a stale cached tool environment after a new release is published.

The command above writes a starter config to ~/.config/lukleh/mcp-read-only-argocd/connections.yaml.

2. Confirm Runtime Paths

uvx mcp-read-only-argocd@latest --print-paths

3. Edit the Connections File

Edit ~/.config/lukleh/mcp-read-only-argocd/connections.yaml:

- connection_name: staging
  url: https://argocd.example.com
  description: Staging Argo CD
  session_token: your-session-token

- connection_name: production
  url: https://argocd-prod.example.com
  description: Production Argo CD
  session_token: your-other-session-token
  1. Log in to your Argo CD web UI
  2. Open browser developer tools
  3. Go to Application/Storage -> Cookies
  4. Copy the value of the argocd.token cookie

Put the cookie value in the session_token field for each connection in ~/.config/lukleh/mcp-read-only-argocd/connections.yaml. The server detects changes to connections.yaml before tool calls, so editing this file does not require an MCP restart.

If Argo CD rejects the active token with a 401 response, the server tries once to load a fresh argocd.token from Chrome Profile 1 for the matching connection domain. When that token differs from the active token, the failed request is retried once. If the retry succeeds, the fresh token is written back to connections.yaml.

6. Configure Your MCP Client

Claude Code

claude mcp add mcp-read-only-argocd \
  --scope user \
  -- uvx mcp-read-only-argocd@latest

Codex

codex mcp add mcp-read-only-argocd \
  -- uvx mcp-read-only-argocd@latest

7. Restart and Test

Restart your MCP client and try a simple query such as:

List all applications in the staging Argo CD instance.

Configuration

connections.yaml supports a list of Argo CD connections:

- connection_name: staging
  url: https://argocd.example.com
  description: Staging Argo CD instance
  session_token: your-session-token
  timeout: 30
  verify_ssl: true

Fields:

  • connection_name: unique identifier used in tool calls and token refreshes
  • url: Argo CD base URL
  • description: optional human-readable description
  • session_token: Argo CD argocd.token browser cookie
  • timeout: optional request timeout in seconds
  • verify_ssl: optional SSL verification toggle

Runtime path override environment variables:

  • MCP_READ_ONLY_ARGOCD_CONFIG_DIR
  • MCP_READ_ONLY_ARGOCD_CACHE_DIR

Command Line Testing

# Show the resolved runtime paths
uvx mcp-read-only-argocd@latest --print-paths

# Write or refresh the default connections.yaml
uvx mcp-read-only-argocd@latest --write-sample-config
uvx mcp-read-only-argocd@latest --write-sample-config --overwrite

# Run the server with the default home-directory config
uvx mcp-read-only-argocd@latest

# Or point at a different runtime root
uvx mcp-read-only-argocd@latest --config-dir /path/to/config-dir

MCP Tools

Core

  • list_connections
  • get_version
  • get_settings

Applications

  • list_applications
  • get_application
  • get_application_resource_tree
  • get_application_managed_resources
  • get_application_logs

Projects

  • list_projects
  • get_project

Clusters

  • list_clusters
  • get_cluster

Repositories

  • list_repositories
  • get_repository

Local Development

If you want to work on the repository itself:

git clone https://github.com/lukleh/mcp-read-only-argocd.git
cd mcp-read-only-argocd
uv sync --extra dev
uv run pytest -q
uv run mcp-read-only-argocd --print-paths
uv run python smoke_test.py --print-paths

The checked-in sample file remains available at connections.yaml.sample for documentation and review, but package users should prefer --write-sample-config.

License

MIT

Release files for mcp-read-only-argocd 0.4.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mcp-read-only-argocd 0.4.1
File Size Uploaded
mcp_read_only_argocd-0.4.1.tar.gz 95.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for mcp-read-only-argocd 0.4.1
File Interpreter ABI Platform
mcp_read_only_argocd-0.4.1-py3-none-any.whl Python 3 none any Details

Total release size: 121.6 kB

Release files / mcp_read_only_argocd-0.4.1.tar.gz

Download URL mcp_read_only_argocd-0.4.1.tar.gz
Size 95.9 kB
Tags Source
SHA-256 checksum
How to use checksums
8f8e29fd55fe5112dcb52823199e1584077407e813f77c1d1337a4d9ba65be23
BLAKE2b-256 checksum
How to use checksums
e44a8ff3239af49f6320b4a5917d7fdb8fe174d3ddb8f44d723981e5f23503b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release files / mcp_read_only_argocd-0.4.1-py3-none-any.whl

Download URL mcp_read_only_argocd-0.4.1-py3-none-any.whl
Size 25.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
e357bec193de999c9d47b729e4738da09f7d08fb91ad7b1d6ba3171934db00ec
BLAKE2b-256 checksum
How to use checksums
b0546478279e3ee599184fa80dfaad665f1f56821cc87833a9b4bcd5e29f291a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.4.1 This release

2 release files

0.4.0

2 release files

0.3.1

2 release files

0.3.0

2 release files

0.2.0

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page