Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations, Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Freshness
Last checked 4/14/2026
Best For
openclaw-claude-code is best for submit, multiple, granular workflows where MCP compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations,
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 14, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/14/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Apr 14, 2026
Vendor
Turkeymz
Artifacts
0
Benchmarks
0
Last release
Unpublished
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. Last updated 4/14/2026.
Setup snapshot
git clone https://github.com/turkeymz/openclaw-claude-code.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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
Turkeymz
Protocol compatibility
MCP
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
Parameters
bash
curl -fsSL https://claude.ai/install.sh | bash
bash
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd
bash
# macOS/Linux/WSL curl -fsSL https://claude.ai/install.sh | bash # Windows PowerShell irm https://claude.ai/install.ps1 | iex # Windows CMD curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd
bash
# Homebrew (macOS) brew install --cask claude-code # WinGet (Windows) winget install Anthropic.ClaudeCode
bash
cd your-project claude
bash
claude # Start REPL, type natural language commands # Use /help for available commands
Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Claude Code --- name: claude-code description: Claude Code CLI and integration for AI-powered coding assistance in terminal, IDE, and CI/CD workflows. Use when working with Claude Code features including: (1) Installation and setup, (2) Interactive sessions and queries, (3) MCP (Model Context Protocol) server configuration, (4) CLI commands and flags, (5) IDE integrations, (6) Common workflows (coding, debugging, git operations,
Claude Code is Anthropic's AI-powered coding assistant that works directly in your development environment. Use this skill when you need help with Claude Code setup, configuration, or advanced workflows.
This repository contains comprehensive documentation for Claude Code. Choose your language:
中文文档 (Chinese):
English Documentation:
Additional References:
Native Install (Recommended):
# macOS/Linux/WSL
curl -fsSL https://claude.ai/install.sh | bash
# Windows PowerShell
irm https://claude.ai/install.ps1 | iex
# Windows CMD
curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd && del install.cmd
Package Managers:
# Homebrew (macOS)
brew install --cask claude-code
# WinGet (Windows)
winget install Anthropic.ClaudeCode
cd your-project
claude
You'll be prompted to log in on first use with one of:
Claude Code supports multiple interaction modes:
Interactive Mode:
claude
# Start REPL, type natural language commands
# Use /help for available commands
One-shot Query:
claude "query"
# Execute and exit, no persistence
Print Mode (SDK):
claude -p "query"
# Output structured response, useful for scripts
Resume Session:
claude -r session-name
# Continue previous conversation
MCP enables Claude Code to connect to external tools, databases, and APIs.
Adding MCP Servers:
# HTTP server
claude mcp add --transport http notion https://mcp.notion.com/mcp
# SSE server
claude mcp add --transport sse asana https://mcp.asana.com/sse
# Local stdio server
claude mcp add --transport stdio airtable -- npx -y airtable-mcp-server
Scopes:
--scope local: Project-specific, stored in project .mcp.json--scope project: Shared via .mcp.json in project root--scope user: Cross-project, stored in ~/.claude.jsonManaging MCP:
claude mcp list # List all servers
claude mcp get github # Get server details
claude mcp remove github # Remove a server
/mcp # Check status in Claude Code
| Command | Description | Example |
|----------|-------------|----------|
| claude | Start interactive REPL | claude |
| claude "query" | One-shot query | claude "explain this function" |
| claude -p "query" | Print mode (SDK) | claude -p "list files" |
| claude -c | Continue last conversation | claude -c |
| claude -r <session> | Resume specific session | claude -r auth-refactor |
| claude commit | Git commit | claude commit |
| claude update | Update to latest | claude update |
| Flag | Description | Example |
|-------|-------------|----------|
| --model | Set model (sonnet/opus/haiku) | claude --model sonnet |
| --agents | Define custom subagents | claude --agents '{...}' |
| --tools | Restrict available tools | claude --tools "Read,Edit" |
| --mcp-config | Load MCP from JSON | claude --mcp-config ./mcp.json |
| --chrome | Enable browser integration | claude --chrome |
| --system-prompt | Replace system prompt | claude --system-prompt "You are a Python expert" |
| --append-system-prompt | Append to system prompt | claude --append-system-prompt "Always use TypeScript" |
| --verbose | Enable debug logging | claude --verbose |
# Add a feature
claude "Add input validation to the user registration form"
# Refactor code
claude "refactor authentication module to use async/await"
# Fix a bug
claude "There's a bug where users can submit empty forms - fix it"
# Write tests
claude "Write unit tests for the calculator functions"
# Check changes
claude "What files have I changed?"
# Create commit
claude "Commit my changes with a descriptive message"
# Create branch
claude "Create a new branch called feature/authentication"
# Resolve conflicts
claude "Help me resolve merge conflicts"
# Explain error
claude "Explain this error: TypeError: Cannot read property 'x' of undefined"
# Analyze logs
tail -f app.log | claude -p "Analyze this log stream and alert me to any errors"
# Code review
claude "Review my changes and suggest improvements"
Define subagents for specialized tasks:
claude --agents '{
"code-reviewer": {
"description": "Expert code reviewer. Use proactively after code changes.",
"prompt": "You are a senior code reviewer. Focus on code quality, security, and best practices.",
"tools": ["Read", "Grep", "Glob", "Bash"],
"model": "sonnet"
},
"debugger": {
"description": "Debugging specialist for errors and test failures.",
"prompt": "You are an expert debugger. Analyze errors, identify root causes, and provide fixes."
}
}'
Claude Code supports granular permission control for tools:
# Allow specific tools without prompts
claude --allowedTools 'Bash(git log *)' 'Bash(git diff *)' 'Read' "query"
# Restrict tools
claude --disallowedTools 'Bash' 'Edit' "query"
# Plan mode (no execution)
claude --permission-mode plan "Show me the plan for this feature"
Four modes for different needs:
Replace entire prompt:
claude --system-prompt "You are a Python expert who only writes type-annotated code"
Load from file:
claude -p --system-prompt-file ./prompts/code-review.txt "Review this PR"
Append to default:
claude --append-system-prompt "Always use TypeScript and include JSDoc comments"
Managed MCP Configuration:
Deploy /Library/Application Support/ClaudeCode/managed-mcp.json (macOS) for centralized control:
{
"mcpServers": {
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp/"
},
"company-internal": {
"type": "stdio",
"command": "/usr/local/bin/company-mcp-server"
}
}
}
Allowlist/Denylist:
{
"allowedMcpServers": [
{"serverName": "github"},
{"serverCommand": ["npx", "-y", "approved-package"]},
{"serverUrl": "https://*.internal.corp/*"}
],
"deniedMcpServers": [
{"serverName": "dangerous-server"},
{"serverUrl": "https://*.untrusted.com/*"}
]
}
# GitHub Actions
- name: Run Claude Code Review
run: |
claude -p "Review this PR and suggest improvements" --from-pr ${{ github.event.number }}
# Automation
tail -f app.log | claude -p "If you see any anomalies, Slack me"
Project .mcp.json:
{
"mcpServers": {
"shared-server": {
"command": "/path/to/server",
"env": {
"API_KEY": "${API_KEY:-default-key}"
}
}
}
}
Settings ~/.claude.json:
{
"model": "sonnet",
"permissionMode": "default",
"chromeIntegration": true
}
Session not saving:
# Check permissions
ls -la ~/.claude/
# Reset configuration
claude /clear
MCP server not connecting:
# Check server status
claude mcp get <server-name>
# Test connection
claude mcp test <server-name>
# View logs
claude --debug
Enable debug output with category filtering:
# Enable all debug
claude --debug
# Filter specific categories
claude --debug "api,mcp"
# Exclude specific categories
claude --debug "!statsig,!file"
| Variable | Description | Example |
|-----------|-------------|----------|
| API_KEY | Claude API key | export API_KEY=sk-xxx |
| MAX_MCP_OUTPUT_TOKENS | Max tokens from MCP tools | export MAX_MCP_OUTPUT_TOKENS=50000 |
| ENABLE_TOOL_SEARCH | Enable MCP tool search | export ENABLE_TOOL_SEARCH=true |
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/turkeymz-openclaw-claude-code/snapshot"
curl -s "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract"
curl -s "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/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/turkeymz-openclaw-claude-code/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:54:55.932Z"
}
},
"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": "submit",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "multiple",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "granular",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|unknown|profile capability:submit|supported|profile capability:multiple|supported|profile capability:granular|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": "Turkeymz",
"href": "https://github.com/turkeymz/openclaw-claude-code",
"sourceUrl": "https://github.com/turkeymz/openclaw-claude-code",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-14T22:25:24.459Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-14T22:25:24.459Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/turkeymz-openclaw-claude-code/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 openclaw-claude-code and adjacent AI workflows.