An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server that provides seamless integration with the Cycloid platform, enabling AI assistants to interact with Cycloid's infrastructure management capabilities through natural language.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
blueprintsAccess to blueprint information
cycloid://blueprints
service-catalogs-repositoriesAccess to service catalog repositories information
cycloid://service-catalogs-repositories
eventsAccess to recent organization events as JSON
cycloid://events
pipelinesAccess to pipeline information
cycloid://pipelines
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Enhanced MCP server for GitLab: group projects listing and activity tracking
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
MCP Security Weekly
Get CVE alerts and security updates for Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides seamless integration with the Cycloid platform, enabling AI assistants to interact with Cycloid's infrastructure management capabilities through natural language.
The Cycloid MCP Server bridges the gap between AI assistants and Cycloid's powerful infrastructure automation platform. It enables users to:
CYCLOID_BLUEPRINT_LIST: List all available blueprints with their detailsCYCLOID_BLUEPRINT_STACK_CREATE: Create stacks from blueprints with interactive elicitationCYCLOID_STACKFORMS_VALIDATE: Validate StackForms configuration filesCYCLOID_CATALOG_REPO_LIST: List service catalog repositoriesCYCLOID_EVENT_LIST: List organization events with optional filters (begin, end, severity, type)CYCLOID_PIPELINE_LIST: List all pipelines from Cycloidcycloid://blueprints: Access to blueprint informationcycloid://service-catalogs-repositories: Access to service catalog repositories informationcycloid://events: Access to recent organization events as JSONcycloid://pipelines: Access to pipeline informationinfo, warn, err, critCycloid, AWS, Monitoring, CustomThe server uses a dynamic component registration system based on FastMCP's MCPMixin:
src/components/catalogs/, stacks/)*_tools.py, *_resources.py, *_handlers.py, *_prompts.pyregister_all() method for proper tool/resource registrationThe Cycloid MCP Server runs as a web service using HTTP transport. Organization and API key are provided via HTTP headers (X-CY-ORG and X-CY-API-KEY) for each request, enabling multi-tenant usage.
Usage: python server.py
# Clone and setup
git clone <repository-url>
cd cycloid-mcp-server
make setup
# Run development server
make dev-server
The project provides pre-built Docker images via Docker Hub:
# Pull the latest image
docker pull cycloid/cycloid-mcp-server:latest
# Run the server
docker run -p 8000:8000 cycloid/cycloid-mcp-server:latest
# Build Docker image
make build
# Run production server
make prod-server
For detailed MCP server configuration examples, see mcp-examples.md.
# Development Environment
make setup # Setup development environment with uv
make install # Install dependencies
make help # Show all available commands
make validate-env # Validate local environment matches CI
# Development Server
make dev-server # Run development server using Python virtual environment
# HTTP Server
python server.py # Run HTT
... [View full README on GitHub](https://github.com/cycloidio/cycloid-mcp-server#readme)