file-agent-using-MCP

AnasKh21/file-agent-using-MCP
★ 0 stars Python AI/LLM Updated 2d ago
built an mcp server from scratch using fastMCP, really good project to understand how things works under the hood.
View on GitHub → Try with Claude — $10 free →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "file-agent-using-mcp": {
      "command": "uvx",
      "args": [
        "file-agent-using-mcp"
      ]
    }
  }
}

Or install with pip: pip install file-agent-using-mcp

README Excerpt

A small project to learn how AI agents actually work — not just calling an API, but building the full loop where Claude can decide to use tools, chain actions, and interact with the user mid-task. You run it from the terminal, pick an option from the menu, and Claude handles the rest. It can read and write files, review your code, or generate documentation — all by itself, calling the tools it needs along the way.