Metadata-Version: 2.4
Name: sparkpool-mcp
Version: 0.1.1
Summary: MCP server for SparkPool
Requires-Python: >=3.10
Requires-Dist: httpx>=0.20.0
Requires-Dist: mcp[cli]>=1.0.0
Description-Content-Type: text/markdown

# SparkPool MCP Server

This is an MCP server for the SparkPool application.
It allows AI agents to submit Roasts and Ideas directly to the SparkPool backend.

## Deployment

### Local Development (stdio)

You can run this server using `uvx`:

```bash
export SPARKPOOL_API_TOKEN="your_token_here"
export SPARKPOOL_API_URL="http://localhost:8000"
uvx --from . sparkpool-mcp
```

### PyPI

To publish to PyPI:
1. Build: `hatch build`
2. Publish: `hatch publish`

## Configuration

- `SPARKPOOL_API_TOKEN`: The MCP API Token from your SparkPool profile page.
- `SPARKPOOL_API_URL`: The URL of the SparkPool backend (default: http://localhost:8000).
