Metadata-Version: 2.4
Name: ria-mcp
Version: 0.1.0
Summary: MCP server for searching Dutch municipal council meeting transcripts. Indexes and searches 150+ transcribed raadsvergaderingen.
Author: FeedIntel
License: MIT
Keywords: claude,dutch,gemeenteraad,mcp,raadsinformatie,transcripts
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.10
Requires-Dist: fastapi
Requires-Dist: fastmcp>=2.0.0
Requires-Dist: uvicorn
Description-Content-Type: text/markdown

# RIA MCP - Raads Intelligence

MCP server for searching Dutch municipal council meeting transcripts from Claude Desktop or Claude Code.

## Install

```bash
pip install ria-mcp
```

## Add to Claude Desktop

Edit `~/Library/Application Support/Claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "ria": {
      "command": "ria-mcp"
    }
  }
}
```

Restart Claude Desktop. The database downloads automatically on first use (~20MB).

## What you can ask Claude

- "Search for discussions about woningbouw in Amsterdam"
- "List all council meetings from last week"
- "Show me the full transcript of the Eindhoven meeting on March 31"
- "Find all mentions of coalitievorming across municipalities"
- "Give me an overview of meetings in Haarlem"
- "What are the overall stats?"

## Tools

| Tool | Description |
|------|-------------|
| `search_transcripts` | Full-text search across all transcripts |
| `list_meetings` | List meetings with filters |
| `get_transcript` | Full transcript for a meeting |
| `get_segment` | Transcript around a timestamp |
| `get_speakers` | Speaker list for a meeting |
| `get_agenda` | Agenda items for a meeting |
| `municipality_overview` | All meetings for a municipality |
| `stats` | Database statistics |

## Update data

```bash
ria-mcp --update
```

## Advanced

```bash
# Use local transcripts folder
ria-mcp --transcripts /path/to/transcripts

# Use specific database
ria-mcp --db /path/to/transcripts.db

# Run as REST API
ria-mcp --api

# Show stats
ria-mcp --stats
```
