Metadata-Version: 2.4
Name: mseep-mcp-llms-txt
Version: 0.1.1
Summary: MCP Server for llms.txt
Home-page: 
Author: mseep
Author-email: mseep <support@skydeck.ai>
Maintainer-email: mseep <support@skydeck.ai>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: httpx
Requires-Dist: mcp[cli]
Requires-Dist: claudette
Dynamic: author
Dynamic: requires-python

# mcp-llms

Minimal example of MCP for parsing `llms.txt`

## Installation

```bash
uv pip install -e .
```

## Usage With Claude Desktop

Add the following to your `claude_desktop_config.json` file (mine is located in `/Users/hamel/Library/Application Support/Claude/claude_desktop_config.json`)

```json
{
  "mcpServers": {
    ... // other mcp servers
    "llms-txt-parser": {
      "command": "uv",
      "args": [
        "--directory",
        "/Users/hamel/git/mcp-llms.txt/mcp_llms", // Path to the mcp_llms directory
        "run",
        "llms_txt.py"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "<Your Anthropic API Key>"
      }
    }
  }
}
```
