MCP_Readme

humanuturn-source/MCP_Readme
★ 0 stars Python Code/Dev Tools Updated 2d ago
Generate readme.md file using MCP server
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

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

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp_readme": {
      "command": "uvx",
      "args": [
        "mcp-readme"
      ]
    }
  }
}

Or install with pip: pip install mcp-readme

README Excerpt

Open your terminal and run the following commands to create a new folder for your project and navigate into it: ```bash mkdir smart-readme-mcp cd smart-readme-mcp ``` Isolate your project dependencies by creating and activating a virtual environment: • On macOS / Linux: ```bash python3 -m venv venv source venv/bin/activate