Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
MCP server for the Komodo DevOps platform — manage servers, stacks, deployments, builds, and more through AI coding tools $1 $1 $1 $1 MCP Komodo MCP server for the $1 DevOps platform. Manage servers, stacks, deployments, builds, and more through natural language in Cursor, Claude Code, and Claude Desktop. **Disclaimer:** Most of this code has been AI-generated and has not been fully tested yet. I created this project for my own needs and plan to continue improving its quality, but it may be buggy in the early stages. If you find a bug, Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Freshness
Last checked 2/25/2026
Best For
@samik081/mcp-komodo is best for komodo, mcp, model-context-protocol workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB MCP, runtime-metrics, public facts pack
MCP server for the Komodo DevOps platform — manage servers, stacks, deployments, builds, and more through AI coding tools $1 $1 $1 $1 MCP Komodo MCP server for the $1 DevOps platform. Manage servers, stacks, deployments, builds, and more through natural language in Cursor, Claude Code, and Claude Desktop. **Disclaimer:** Most of this code has been AI-generated and has not been fully tested yet. I created this project for my own needs and plan to continue improving its quality, but it may be buggy in the early stages. If you find a bug,
Public facts
5
Change events
1
Artifacts
0
Freshness
Feb 25, 2026
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 25, 2026
Vendor
Samik081
Artifacts
0
Benchmarks
0
Last release
0.3.1
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/25/2026.
Setup snapshot
git clone https://github.com/Samik081/mcp-komodo.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Samik081
Protocol compatibility
MCP
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
KOMODO_URL="https://komodo.example.com" \ KOMODO_API_KEY="your-api-key" \ KOMODO_API_SECRET="your-api-secret" \ npx -y @samik081/mcp-komodo
bash
docker run --rm -i \ -e KOMODO_URL=https://komodo.example.com \ -e KOMODO_API_KEY=your-api-key \ -e KOMODO_API_SECRET=your-api-secret \ ghcr.io/samik081/mcp-komodo
bash
docker run -d -p 3000:3000 \ -e MCP_TRANSPORT=http \ -e KOMODO_URL=https://komodo.example.com \ -e KOMODO_API_KEY=your-api-key \ -e KOMODO_API_SECRET=your-api-secret \ ghcr.io/samik081/mcp-komodo
bash
# Using npx claude mcp add --transport stdio komodo \ --env KOMODO_URL=https://komodo.example.com \ --env KOMODO_API_KEY=your-api-key \ --env KOMODO_API_SECRET=your-api-secret \ -- npx -y @samik081/mcp-komodo # Using Docker claude mcp add --transport stdio komodo \ --env KOMODO_URL=https://komodo.example.com \ --env KOMODO_API_KEY=your-api-key \ --env KOMODO_API_SECRET=your-api-secret \ -- docker run --rm -i ghcr.io/samik081/mcp-komodo # Using remote HTTP (connect to a running Docker container or HTTP server) claude mcp add --transport http komodo http://localhost:3000
json
{
"mcpServers": {
"komodo": {
"command": "npx",
"args": ["-y", "@samik081/mcp-komodo"],
"env": {
"KOMODO_URL": "https://komodo.example.com",
"KOMODO_API_KEY": "your-api-key",
"KOMODO_API_SECRET": "your-api-secret"
}
}
}
}json
{
"mcpServers": {
"komodo": {
"command": "docker",
"args": ["run", "--rm", "-i",
"-e", "KOMODO_URL=https://komodo.example.com",
"-e", "KOMODO_API_KEY=your-api-key",
"-e", "KOMODO_API_SECRET=your-api-secret",
"ghcr.io/samik081/mcp-komodo"
]
}
}
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
MCP server for the Komodo DevOps platform — manage servers, stacks, deployments, builds, and more through AI coding tools $1 $1 $1 $1 MCP Komodo MCP server for the $1 DevOps platform. Manage servers, stacks, deployments, builds, and more through natural language in Cursor, Claude Code, and Claude Desktop. **Disclaimer:** Most of this code has been AI-generated and has not been fully tested yet. I created this project for my own needs and plan to continue improving its quality, but it may be buggy in the early stages. If you find a bug,
MCP server for the Komodo DevOps platform. Manage servers, stacks, deployments, builds, and more through natural language in Cursor, Claude Code, and Claude Desktop.
Disclaimer: Most of this code has been AI-generated and has not been fully tested yet. I created this project for my own needs and plan to continue improving its quality, but it may be buggy in the early stages. If you find a bug, feel free to open an issue -- I'll try to work on it in my spare time.
read-only, read-execute, full) for granular controlKOMODO_CATEGORIES to expose only the tools you needkomodo_client SDKlinux/amd64 and linux/arm64 on GHCRMCP_TRANSPORT=http) using the Streamable HTTP protocolRun the server directly with npx:
KOMODO_URL="https://komodo.example.com" \
KOMODO_API_KEY="your-api-key" \
KOMODO_API_SECRET="your-api-secret" \
npx -y @samik081/mcp-komodo
The server validates your Komodo connection on startup and fails immediately with a clear error if credentials are missing or invalid.
Run with Docker (stdio transport, same as npx):
docker run --rm -i \
-e KOMODO_URL=https://komodo.example.com \
-e KOMODO_API_KEY=your-api-key \
-e KOMODO_API_SECRET=your-api-secret \
ghcr.io/samik081/mcp-komodo
To run as a remote MCP server with HTTP transport:
docker run -d -p 3000:3000 \
-e MCP_TRANSPORT=http \
-e KOMODO_URL=https://komodo.example.com \
-e KOMODO_API_KEY=your-api-key \
-e KOMODO_API_SECRET=your-api-secret \
ghcr.io/samik081/mcp-komodo
The MCP endpoint is available at http://localhost:3000 and a health check at http://localhost:3000/health.
Claude Code CLI (recommended):
# Using npx
claude mcp add --transport stdio komodo \
--env KOMODO_URL=https://komodo.example.com \
--env KOMODO_API_KEY=your-api-key \
--env KOMODO_API_SECRET=your-api-secret \
-- npx -y @samik081/mcp-komodo
# Using Docker
claude mcp add --transport stdio komodo \
--env KOMODO_URL=https://komodo.example.com \
--env KOMODO_API_KEY=your-api-key \
--env KOMODO_API_SECRET=your-api-secret \
-- docker run --rm -i ghcr.io/samik081/mcp-komodo
# Using remote HTTP (connect to a running Docker container or HTTP server)
claude mcp add --transport http komodo http://localhost:3000
JSON config (works with Claude Code .mcp.json, Claude Desktop claude_desktop_config.json, Cursor .cursor/mcp.json):
{
"mcpServers": {
"komodo": {
"command": "npx",
"args": ["-y", "@samik081/mcp-komodo"],
"env": {
"KOMODO_URL": "https://komodo.example.com",
"KOMODO_API_KEY": "your-api-key",
"KOMODO_API_SECRET": "your-api-secret"
}
}
}
}
Docker (stdio):
{
"mcpServers": {
"komodo": {
"command": "docker",
"args": ["run", "--rm", "-i",
"-e", "KOMODO_URL=https://komodo.example.com",
"-e", "KOMODO_API_KEY=your-api-key",
"-e", "KOMODO_API_SECRET=your-api-secret",
"ghcr.io/samik081/mcp-komodo"
]
}
}
}
Remote MCP (connect to a running Docker container or HTTP server):
{
"mcpServers": {
"komodo": {
"type": "streamable-http",
"url": "http://localhost:3000"
}
}
}
Control which tools are available using the KOMODO_ACCESS_TIER environment variable:
| Tier | Tools | Description |
|------|-------|-------------|
| full (default) | 46 | Read, execute, and write -- full control |
| read-execute | 45 | Read and execute -- no resource creation/deletion via write tool |
| read-only | 31 | Read only -- safe for exploration, no state changes |
Tier details:
komodo_write_resource for creating, updating, and deleting Komodo resources.komodo_write_resource tool is hidden.Tools that are not available in your tier are not registered with the MCP server. They will not appear in your AI tool's tool list, keeping the context clean.
Set KOMODO_ACCESS_TIER to read-only, read-execute, or full (default: full).
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| KOMODO_URL | Yes | -- | URL of your Komodo Core instance |
| KOMODO_API_KEY | Yes | -- | API key for authentication |
| KOMODO_API_SECRET | Yes | -- | API secret for authentication |
| KOMODO_ACCESS_TIER | No | full | Access tier: read-only, read-execute, or full |
| KOMODO_CATEGORIES | No | (all) | Comma-separated category allowlist (e.g., servers,stacks,builds) |
| DEBUG | No | -- | Set to any value to enable debug logging to stderr |
| MCP_TRANSPORT | No | stdio | Transport mode: stdio (default) or http |
| MCP_PORT | No | 3000 | HTTP server port (only used when MCP_TRANSPORT=http) |
| MCP_HOST | No | 0.0.0.0 | HTTP server bind address (only used when MCP_TRANSPORT=http) |
Generate API keys in the Komodo UI under Settings > API Keys.
servers, stacks, deployments, containers, builds, repos, procedures, actions, builders, alerters, resource-syncs, write
mcp-komodo provides 46 tools organized by category. Each tool's Access column shows the minimum tier required: read-only (available in all tiers), read-execute (requires read-execute or full), or full (requires full tier only).
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_servers | List all servers with status and region | read-only |
| komodo_get_server | Get server configuration, status, and action state | read-only |
| komodo_get_server_stats | Get CPU, memory, disk usage, and load averages | read-only |
| komodo_get_server_info | Get OS details, hardware info, and running processes | read-only |
| komodo_inspect_docker_container | Inspect a Docker container (equivalent to docker inspect) | read-only |
| komodo_inspect_docker_image | Inspect a Docker image (equivalent to docker image inspect) | read-only |
| komodo_inspect_docker_network | Inspect a Docker network (equivalent to docker network inspect) | read-only |
| komodo_inspect_docker_volume | Inspect a Docker volume (equivalent to docker volume inspect) | read-only |
| komodo_prune_docker | Prune unused Docker resources on a server | read-execute |
| komodo_delete_docker_resource | Delete a specific Docker image, volume, or network | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_stacks | List all stacks with state, server, and service count | read-only |
| komodo_get_stack | Get stack configuration, services, and action state | read-only |
| komodo_get_stack_log | Get logs from stack services, with optional search | read-only |
| komodo_inspect_stack_container | Inspect a container for a specific service in a stack | read-only |
| komodo_deploy_stack | Deploy or redeploy a stack | read-execute |
| komodo_stack_lifecycle | Start, stop, restart, pause, or unpause a stack | read-execute |
| komodo_destroy_stack | Permanently destroy a stack | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_deployments | List all deployments with state, image, and server | read-only |
| komodo_get_deployment | Get deployment configuration, container status, and action state | read-only |
| komodo_get_deployment_log | Get container logs, with optional search | read-only |
| komodo_inspect_deployment_container | Inspect the container for a deployment (equivalent to docker inspect) | read-only |
| komodo_deploy_deployment | Deploy with latest image and configuration | read-execute |
| komodo_deployment_lifecycle | Start, stop, restart, pause, or unpause a deployment | read-execute |
| komodo_destroy_deployment | Permanently destroy a deployment | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_get_container_log | Get logs from any Docker container on a server | read-only |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_builds | List all build configurations with version info | read-only |
| komodo_get_build | Get build configuration, builder, and action state | read-only |
| komodo_run_build | Run a build to create a Docker image | read-execute |
| komodo_cancel_build | Cancel a running build | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_repos | List all repos with URL, server, and state | read-only |
| komodo_get_repo | Get repo configuration, branch, and action state | read-only |
| komodo_repo_clone_pull | Clone or pull a repo on its target server | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_procedures | List all procedures with state | read-only |
| komodo_get_procedure | Get procedure stages, operations, and action state | read-only |
| komodo_run_procedure | Run a procedure (executes all stages) | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_actions | List all actions with state | read-only |
| komodo_get_action | Get action configuration and action state | read-only |
| komodo_run_action | Run a custom TypeScript/Deno action | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_builders | List all builders with type | read-only |
| komodo_get_builder | Get builder type, server configuration, and state | read-only |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_alerters | List all alerters with type | read-only |
| komodo_get_alerter | Get alerter endpoint type, configuration, and status | read-only |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_list_resource_syncs | List all resource syncs with state and repo info | read-only |
| komodo_get_resource_sync | Get sync configuration, managed resources, and state | read-only |
| komodo_trigger_sync | Trigger a GitOps sync from the Git repo | read-execute |
| Tool | Description | Access |
|------|-------------|--------|
| komodo_write_resource | Create, update, or delete any Komodo resource | full |
After configuring your MCP client, ask your AI assistant:
"What servers are connected to Komodo?"
If the connection is working, the assistant will call komodo_list_servers and return your servers with their current state and region.
Once configured, ask your AI tool questions in natural language:
"List all my servers and their status" -- calls komodo_list_servers to show every server with its current state and region.
"What's the CPU and memory usage on server prod-01?" -- calls komodo_get_server_stats to show real-time resource utilization.
"Show me the logs from the production stack" -- calls komodo_get_stack_log to retrieve recent log output from all services in the stack.
"Deploy the frontend stack" -- calls komodo_deploy_stack to redeploy the stack with its current configuration.
"Create a new deployment called api-staging with image myapp:latest" -- calls komodo_write_resource to create a new Deployment resource in Komodo.
Connection refused
Check that KOMODO_URL is correct and that Komodo Core is reachable from where the MCP server is running. The server validates the connection on startup, so if it started successfully, the URL was valid at that time.
Invalid credentials / 401 Unauthorized Verify your API key and secret are correct. Check that the key has not been revoked or expired in the Komodo UI under Settings > API Keys.
Tools not showing up in your AI tool
Check your access tier setting. In read-only mode, only 31 tools are registered. In read-execute mode, 45 tools are registered. Use full (or omit KOMODO_ACCESS_TIER) for all 46 tools. Check KOMODO_CATEGORIES -- only tools in listed categories are registered. Also verify the server started without errors by checking stderr output.
Node.js version errors
mcp-komodo requires Node.js >= 18.0.0. Check your version with node --version.
Parse errors or "invalid JSON" in MCP client This typically means something is writing to stdout besides the MCP server. Ensure no other tools, shell profiles, or startup scripts print to stdout when launching the server. The MCP protocol uses stdout for JSON-RPC communication. All mcp-komodo logging goes to stderr.
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode (auto-reload)
npm run dev
# Open the MCP Inspector for interactive testing
npm run inspect
MIT
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T02:20:24.520Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "komodo",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "devops",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "llm",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:komodo|supported|profile capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:devops|supported|profile capability:ai|supported|profile capability:llm|supported|profile capability:claude|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Samik081",
"href": "https://github.com/Samik081/mcp-komodo#readme",
"sourceUrl": "https://github.com/Samik081/mcp-komodo#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:40.434Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:40.434Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/Samik081/mcp-komodo",
"sourceUrl": "https://github.com/Samik081/mcp-komodo",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-25T03:09:40.434Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-samik081-mcp-komodo/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to @samik081/mcp-komodo and adjacent AI workflows.