CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
geiserx avatar

Spinnaker Mcp

geiserx/spinnaker-mcp
2authSTDIOregistry active
Summary

Connects Claude directly to your Spinnaker deployment through the Gate API. You get 40+ tools covering the full lifecycle: trigger and manage pipelines, search and cancel executions, query server groups and load balancers, evaluate SpEL expressions, and inspect cluster state across accounts. Supports bearer tokens, basic auth, and x509 certificates. The npm package wraps a Go binary that runs over stdio, so it slots into Claude Desktop with a few lines of config. Particularly useful if you're managing multi-cloud deployments and want an LLM to help troubleshoot failed stages, compare pipeline configurations, or orchestrate complex rollouts without context-switching to the Spinnaker UI.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Spinnaker MCP banner

Spinnaker-MCP

npm CI Coverage Go Docker Pulls GitHub Stars License

Official MCP Registry Glama MCP Server MCPServers.org mcp.so ToolSDK Registry listed on awesome-mcp-servers mcpindex

A bridge that exposes any Spinnaker instance as an MCP v1 server via the Gate API, written in Go.


What you get

CategoryToolDescription
Applicationslist_applicationsList all Spinnaker applications
get_applicationGet detailed application info (accounts, clusters, attributes)
Pipelineslist_pipelinesList pipeline configurations for an application
get_pipelineGet a specific pipeline's full configuration
trigger_pipelineTrigger a pipeline with optional parameters
save_pipelineSave/create a pipeline definition
update_pipelineUpdate an existing pipeline definition
delete_pipelineDelete a pipeline definition
get_pipeline_historyGet revision history for a pipeline config
Executionslist_executionsList recent executions, filterable by status
get_executionGet full execution details (stages, outputs, timing)
search_executionsRich search by trigger type, time range, status
cancel_executionCancel a running execution with optional reason
pause_executionPause a running execution at the current stage
resume_executionResume a paused execution
restart_stageRestart a failed stage within an execution
evaluate_expressionEvaluate a SpEL expression against an execution
Strategieslist_strategiesList deployment strategy configurations
save_strategyCreate or update a deployment strategy
delete_strategyDelete a deployment strategy
Infrastructurelist_server_groupsList server groups (deployment targets) with instance counts
list_load_balancersList load balancers across all accounts and regions
list_clustersList cluster names grouped by account
get_clusterGet cluster details including server groups
get_scaling_activitiesGet scaling activities for a cluster
get_target_server_groupTarget-based server group lookup (newest, oldest, etc.)
list_firewallsList all firewalls/security groups across accounts
get_firewallGet firewall details by account, region, and name
get_instanceGet instance details (health, metadata, launch time)
get_console_outputGet instance console output for debugging
find_imagesSearch for machine images by tags, region, account
get_image_tagsList image tags for a repository
list_networksList VPCs/networks by cloud provider
list_subnetsList subnets by cloud provider
list_accountsList all configured cloud accounts/credentials
get_accountGet account details and permissions
Tasksget_taskGet orchestration task status (deploy, resize, rollback)

Everything is exposed over JSON-RPC. LLMs and agents can: initialize -> listTools -> callTool and interact with your Spinnaker deployments.


Quick-start

npm (stdio transport)

npx spinnaker-mcp

Or install globally:

npm install -g spinnaker-mcp
spinnaker-mcp

This downloads the pre-built Go binary for your platform and runs it with stdio transport.

Docker

docker run --rm -e GATE_URL=http://spin-gate:8084 -e TRANSPORT=stdio drumsergio/spinnaker-mcp:0.3.1

Local build

git clone https://github.com/GeiserX/spinnaker-mcp
cd spinnaker-mcp

cp .env.example .env && $EDITOR .env

go run ./cmd/server

Configuration

VariableDefaultDescription
GATE_URLhttp://localhost:8084Spinnaker Gate API endpoint (without trailing /)
GATE_TOKEN(empty)Bearer token for authentication
GATE_USER(empty)Basic auth username (alternative to token)
GATE_PASS(empty)Basic auth password
GATE_CERT_FILE(empty)Path to x509 client certificate (PEM)
GATE_KEY_FILE(empty)Path to x509 client key (PEM)
GATE_INSECUREfalseSkip TLS certificate verification
TRANSPORT(empty = HTTP)Set to stdio for stdio transport
MCP_PORT8085HTTP transport port (ignored when TRANSPORT=stdio)
MCP_BIND_ADDR127.0.0.1HTTP transport bind address (set to 0.0.0.0 to listen on all interfaces)

Authentication priority: Bearer token > Basic auth > x509 client cert > No auth.

Put them in a .env file (from .env.example) or set them in the environment.

Claude Code / Claude Desktop configuration

{
  "mcpServers": {
    "spinnaker": {
      "command": "npx",
      "args": ["-y", "spinnaker-mcp"],
      "env": {
        "GATE_URL": "https://spin-gate.example.com",
        "GATE_TOKEN": "your-token-here"
      }
    }
  }
}

Testing

go test -v -race ./...

Tested with Inspector. Before making a PR, make sure this MCP server behaves well via that tool.

Credits

Spinnaker -- open-source continuous delivery platform

MCP-GO -- Go MCP implementation

GoReleaser -- painless multi-arch releases

Maintainers

@GeiserX.

Contributing

Feel free to dive in! Open an issue or submit PRs.

Spinnaker-MCP follows the Contributor Covenant Code of Conduct.

Other MCP Servers by GeiserX

  • genieacs-mcp -- TR-069 device management
  • cashpilot-mcp -- Passive income monitoring
  • duplicacy-mcp -- Backup health monitoring
  • lynxprompt-mcp -- AI configuration blueprints
  • pumperly-mcp -- Fuel and EV charging prices
  • telegram-archive-mcp -- Telegram message archive
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →

Configuration

GATE_URL*

Spinnaker Gate API URL (e.g. http://spin-gate:8084)

GATE_TOKENsecret

Bearer token for Gate authentication

GATE_USER

Basic auth username (alternative to token)

GATE_PASSsecret

Basic auth password

Categories
Sales & MarketingAutomation & Workflows
Registryactive
Packagespinnaker-mcp
TransportSTDIO
AuthRequired
UpdatedApr 23, 2026
View on GitHub

More from geiserx

  • Lynxprompt Mcp1
  • Pumperly Mcp1
  • Duplicacy Mcp1
  • Genieacs Mcp12
  • Telegram Archive Mcp3
  • Cashpilot Mcp2

Related Sales & Marketing MCP Servers

View all →
byteoverdev avatar
Diagrams MCP

io.github.mskry/diagrams-mcp-server

Generate cloud architecture diagrams, flowcharts, and sequence diagrams.
2
theastraway avatar
MIND

io.github.theastraway/mind

Personal knowledge graph AI memory. 15 tools, 89 actions. Emotional intelligence, CRM, social.
2
pablixnieto2 avatar
Etld Mcp Server

pablixnieto2/etld-mcp-server

Deterministic B2B Data Middleware. Waterfall parsing for CSV, EDI, SEC & Finance. No hallucinations.
2
boolsai-ai avatar
Boolsai Signals

ai.boolsai/signals

Quant-research MCP — tradeable signals from public-company website stack changes. 7 tools.
1
arpe-io avatar
Lakexpress Mcp

arpe-io/lakexpress-mcp

MCP server for LakeXpress — automated database-to-cloud data pipeline as Parquet
1
ask-cyborg avatar
AskCyborg

ask-cyborg/askcyborg-mcp

Analyst-debate research on every public and private company. 8 tools: search, score, compare, more.
1