1. Conduid
  2. Developer Tools
  3. Codetoolsmcp
MCP server · Developer Tools

Codetoolsmcp

A Model Context Protocol (MCP) server that provides AI agents with powerful file system tools including ripgrep-based search, glob pattern matching, and file read/write/edit capabilities

Unclaimed last commit 11 months ago devtools
43Fair

Scored 4 months ago · breakdown

About Codetoolsmcp

Codetoolsmcp is an MCP server published by AbdelilahOu in the Developer Tools category: a Model Context Protocol (MCP) server that provides AI agents with powerful file system tools including ripgrep-based search, glob pattern matching, and file read/write/edit capabilities. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit 11 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx codetoolsmcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Codetoolsmcp

Powered by Claude · Grounded in docs

I know everything about Codetoolsmcp. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Code Tools MCP Server

A Model Context Protocol (MCP) server that provides the same powerful code manipulation tools that Claude Code uses internally. This enables any AI agent to have the same level of code search, reading, editing, and file operations capabilities.

Features

The server exposes 17 core tools that mirror Claude Code's functionality:

  1. grep - Fast regex-based code search using ripgrep
  2. glob - File pattern matching with support for **/*.ext patterns
  3. read - Read files with line numbers and optional range selection
  4. edit - Perform exact string replacements in files
  5. write - Create or overwrite files
  6. git_status - Show working tree changes in porcelain format
  7. git_log - Query commit history with filtering options
  8. git_diff - Compare revisions, staged changes, or specific paths
  9. git_show - Display commit details or object contents
  10. git_branch - List branches with filters and sorting
  11. list_dir - Enumerate directory contents
  12. delete - Delete a single file
  13. remove - Remove files or directories (supports recursive deletion)
  14. copy - Copy files or directories
  15. move - Move or rename files and directories
  16. tree - Visualise directory structures in ASCII form
  17. run - Execute shell commands and capture output

Installation

Prerequisites

  • Go 1.21 or higher
  • ripgrep installed and available in PATH

Building

make build

Configuration

Create a config.json file:

{
  "logging": {
    "level": "INFO",
    "output_file": "code-tools-mcp.log",
    "max_size_mb": 10,
    "console": true
  }
}

Configuration Options

  • logging.level: Log level (DEBUG, INFO, WARN, ERROR)
  • logging.output_file: Path to log file
  • logging.max_size_mb: Maximum log file size in MB before rotation
  • logging.console: Whether to also log to console

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "code-tools": {
      "command": "/path/to/code-tools-mcp",
      "args": ["stdio", "--config", "/path/to/config.json"]
    }
  }
}

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Codetoolsmcp

How do I install Codetoolsmcp?

Run npx codetoolsmcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Codetoolsmcp safe to use with an AI agent?

Its trust score is 43 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Codetoolsmcp still maintained?

The last commit was 11 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.