mcp-claudecode
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-claudecodelist all files in workspace"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-claudecode
MCP HTTP Server implementing 41 tools from Claude Code, built in Python.
Compatible với Claude Desktop, Cursor, và bất kỳ MCP client nào.
Tools (41 total)
Tool | Trạng thái | Mô tả |
AgentTool | ✅ | Spawn sub-agent task |
AskUserQuestionTool | ✅ | Hỏi user clarification |
BashTool | ✅ Full | Chạy shell commands |
BriefTool | ✅ | Get/set context summary |
ConfigTool | ✅ | Đọc/ghi config |
EnterPlanModeTool | ✅ | Vào plan mode |
EnterWorktreeTool | ✅ Full | Vào git worktree |
ExitPlanModeTool | ✅ | Thoát plan mode |
ExitWorktreeTool | ✅ Full | Thoát worktree |
FileEditTool | ✅ Full | Sửa file bằng string replacement |
FileReadTool | ✅ Full | Đọc file với pagination |
FileWriteTool | ✅ Full | Ghi/tạo file |
GlobTool | ✅ Full | Tìm file theo glob pattern |
GrepTool | ✅ Full | Tìm text bằng regex |
LSPTool | 🔶 Stub | Language Server Protocol |
ListMcpResourcesTool | 🔶 Stub | Liệt kê MCP resources |
MCPTool | 🔶 Stub | Gọi MCP tool |
McpAuthTool | 🔶 Stub | Auth MCP server |
NotebookEditTool | ✅ Full | Sửa Jupyter notebook |
PowerShellTool | ✅ Full | Chạy PowerShell |
REPLTool | ✅ Full | Interactive REPL (python/node) |
ReadMcpResourceTool | 🔶 Stub | Đọc MCP resource |
RemoteTriggerTool | ✅ Full | HTTP POST đến remote endpoint |
ScheduleCronTool | ✅ | Tạo cron job (lưu JSON) |
SendMessageTool | 🔶 Stub | Gửi message đến session khác |
SkillTool | 🔶 Stub | Kích hoạt skill |
SleepTool | ✅ Full | Sleep/wait |
SyntheticOutputTool | ✅ | Synthetic output |
TaskCreateTool | ✅ Full | Tạo task |
TaskGetTool | ✅ Full | Lấy info task |
TaskListTool | ✅ Full | Liệt kê tasks |
TaskOutputTool | ✅ Full | Set task output |
TaskStopTool | ✅ Full | Dừng task |
TaskUpdateTool | ✅ Full | Update task |
TeamCreateTool | ✅ Full | Tạo agent team |
TeamDeleteTool | ✅ Full | Xóa agent team |
TodoWriteTool | ✅ Full | Ghi todo list |
ToolSearchTool | ✅ Full | Tìm kiếm tool |
WebFetchTool | ✅ Full | Fetch URL |
WebSearchTool | ✅ Full | Web search (Brave/DuckDuckGo) |
TestingPermissionTool | ✅ Stub | Test permissions |
Legend: ✅ Full = fully implemented | 🔶 Stub = returns metadata/placeholder
Related MCP server: tool-mcp-server
Cài đặt
cd mcp-claudecode
python -m venv .venv
# Windows
.venv\Scripts\activate
# macOS/Linux
source .venv/bin/activate
pip install -r requirements.txt
playwright install chromium # optional, dùng cho browser automationChạy server
python server.pyServer khởi động tại:
MCP endpoint: http://localhost:3458/mcp
Health check: http://localhost:3458/health
Expose qua Cloudflare Tunnel (optional)
python tunnel.py
# Public URL được lưu vào data/tunnel-url.txtCấu hình Claude Desktop
{
"mcpServers": {
"mcp-claudecode": {
"url": "http://localhost:3458/mcp"
}
}
}Hoặc với tunnel URL:
{
"mcpServers": {
"mcp-claudecode": {
"url": "https://<your-tunnel>.trycloudflare.com/mcp"
}
}
}Cấu trúc
mcp-claudecode/
├── server.py # Main MCP server (41 tools)
├── tunnel.py # Cloudflare Quick Tunnel helper
├── requirements.txt
├── tools/
│ ├── file_tools.py # FileRead, FileWrite, FileEdit, Glob, Grep
│ ├── shell_tools.py # Bash, PowerShell, REPL
│ ├── web_tools.py # WebFetch, WebSearch
│ ├── task_tools.py # Task*, TodoWrite
│ ├── git_tools.py # Worktree
│ ├── notebook_tool.py # NotebookEdit
│ └── agent_tools.py # Agent, Team, Config, Cron, MCP, LSP...
├── data/ # Runtime data (tasks.json, config.json, etc.)
└── workspace/ # Shared file workspaceEnv vars
Var | Mô tả |
| Port (default: 3458) |
| Brave Search API key (optional, dùng cho WebSearchTool) |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceTurns any CLI tool or REST API into an MCP server for Claude, enabling Claude to use git, databases, or any API through natural language.MIT
- AlicenseCqualityCmaintenanceA Model Context Protocol server exposing 58 online tools (crypto, data, image, text, etc.) and workflow execution, enabling MCP clients like Claude Desktop to invoke them via natural language.5811MIT
- Flicense-qualityCmaintenanceExposes Claude Code's file editing, command execution, and test running capabilities as composable MCP tools for any MCP-compatible host, enabling code operations via a stateless bridge.
- Alicense-qualityCmaintenanceEnables turning any personal-assistant REST backend into Claude-ready tools via a single MCP server, providing 38 tools for communications, finance, health, and more.MIT
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abc407859-collab/mcp-claudecode'
If you have feedback or need assistance with the MCP directory API, please join our Discord server