Metadata-Version: 2.4
Name: mcp-document-brain-circlci
Version: 0.1.3
Summary: MCP server for converting files to markdown using Markitdown
Author-email: Armstrong Asenavi <zattufinancialanlyst@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: mcp[cli]>=1.8.0
Requires-Dist: markitdown[all]>=0.1.1
Provides-Extra: dev
Requires-Dist: build>=1.2.2.post1; extra == "dev"
Requires-Dist: pytest>=8.3.5; extra == "dev"
Requires-Dist: twine>=6.1.0; extra == "dev"

# MCP Document Reader

An MCP server that can extract text from document files.

## Installation

```bash
pip install mcp-document-brain
```

## Usage

### With Claude Desktop

1. Install the package: `pip install mcp-document-brain`
2. Run: `mcp install mcp-document-brain`
3. Restart Claude Desktop

### With Cursor

Add the following to your `~/.cursor/mcp.json` file:

```json
{
    "mcpServers": {
        "document-reader-mcp": {
            "command": "mcp-document-brain"
        }
    }
}
```

## Features

- Extract text from PDF files
- Extract text from DOCX files
- Access documents from your Recent folder

## Development

1. Clone the repository
2. Install development dependencies: `uv add --dev -e .`
3. Run tests: `pytest`
```
