code-tools-mcp
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., "@code-tools-mcpsearch for 'TODO' in all .py files"
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.
Code Tools MCP
一个整合了文件阅读和代码搜索功能的 MCP (Model Context Protocol) 服务工具。
功能概述
本 MCP 服务注册了两个工具,供支持 MCP 协议的 AI 客户端(如 Claude Desktop、Claude Code 等)调用:
1. read_file — 文件阅读
读取指定路径的文件内容,支持按行范围分页读取。
参数:
参数 | 类型 | 必填 | 说明 |
| string | 是 | 文件的绝对或相对路径,支持跨盘符路径(如 |
| number | 否 | 起始行号(从 1 开始),配合 |
| number | 否 | 最大读取行数,配合 |
示例:
{
"file_path": "D:/projects/main.cpp",
"offset": 100,
"limit": 50
}2. search_codebase — 代码搜索
在指定目录中递归搜索匹配正则表达式的内容,基于 grep 实现。
参数:
参数 | 类型 | 必填 | 说明 |
| string | 是 | grep 兼容的搜索查询(支持正则表达式) |
| string | 否 | 搜索目录,支持绝对/相对路径,默认为当前工作目录 |
| string | 否 | 文件类型过滤(如 |
示例:
{
"query": "function\\s+loadNextLevel",
"directory": "D:/raylib/proj_1",
"include": "*.cpp"
}Related MCP server: MCP Smart Filesystem Server
安装与配置
1. 安装依赖
cd D:/code-tools-mcp
npm install2. 配置 MCP 客户端
在 Claude Desktop 或 Claude Code 的 MCP 配置中添加:
{
"mcpServers": {
"code-tools": {
"command": "node",
"args": ["D:/code-tools-mcp/index.js"]
}
}
}3. 启动(测试)
node D:/code-tools-mcp/index.js项目结构
code-tools-mcp/
├── index.js # MCP 服务主入口,注册 read_file 和 search_codebase 两个工具
├── package.json # 项目配置文件
└── README.md # 本说明文件技术栈
运行时: Node.js
MCP SDK:
@modelcontextprotocol/sdkv1.29+参数校验: Zod v4.4+
文件读取: Node.js 内置
fs/promises代码搜索: 调用系统
grep命令
注意事项
search_codebase依赖系统安装的grep命令,Windows 用户需确保 Git Bash 或类似环境可用单次返回内容上限约为 64,000 字符,超出部分会被截断
文件读取默认使用 UTF-8 编码
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.
Latest Blog Posts
- 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/Ricii2024/code-tools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server