MCP.so
Sign In

MCP Server for Software Development

@kvas-it

About MCP Server for Software Development

An MCP server that provides filesystem access to Claude desktop

Basic information

Category

Other

Runtime

python

Transports

stdio

Publisher

kvas-it

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "mcp-server-dev-kvas-it": {
      "command": "python",
      "args": [
        "fs_access.py",
        "#",
        "Normal",
        "mode"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is MCP Server for Software Development?

It is an MCP server that provides filesystem and shell access to Claude desktop, enabling Claude to perform file operations and run shell commands through a Unix socket-based daemon.

How to use MCP Server for Software Development?

Start the filesystem daemon with python fs_access.py in your target directory (add --verbose for detailed output). Then configure Claude Desktop’s mcpServers entry to use uv run with the provided mcp_server.py script. After configuration, Claude will discover the two MCP tools: get_available_operations() and execute_fs_operation().

Key features of MCP Server for Software Development

  • Single permission prompt (2 tools vs 15+ alternatives)
  • Dynamic discovery of available operations
  • Rich error handling with helpful hints
  • Type safety with parameter schema validation
  • File operations: list, read, write, edit, move, delete
  • Shell command execution with configurable timeout

Use cases of MCP Server for Software Development

  • Automate file reading, writing, and editing through Claude.
  • Manage directories – create, move, and delete them recursively.
  • Run shell commands like git status or python --version.
  • Apply search/replace edits across multiple code files.
  • Discover available operations dynamically in new environments.

FAQ from MCP Server for Software Development

What tools does the server expose to Claude?

Two tools: get_available_operations() (lists all filesystem operations and their schemas) and execute_fs_operation(operation, params) (runs a specific operation).

How does error handling work?

Connection errors provide hints if the daemon is not running. Invalid operations list available signatures. File errors include specific types like FileNotFoundError, and parameter errors include type validation and requirements.

What filesystem and shell operations are available?

ls, read_file, write_file, edit_file (search/replace), mkdir, rmdir, rm, mv, and shell (with command, args, and timeout).

What is the runtime architecture?

Claude communicates via the MCP server, which sends JSON‑RPC over a Unix socket to the filesystem daemon (fs_access.py). The daemon performs all file and shell operations.

How do I start the daemon?

Run python fs_access.py in your target directory. Use --verbose to see shell output, file contents, and edit details. The daemon must be running before Claude can use the tools.

Comments

More Other MCP servers