parliamentary-nlp-mcp
MCP server that audits Brazilian parliamentary speeches for hate speech and offensive language using a fine-tuned BERTimbau classifier, returning classification, confidence, and human review recommendations.
README
Parliamentary NLP MCP Auditor
A Model Context Protocol (MCP) server providing structured tools for auditing hate speech and offensive language in formal Brazilian parliamentary speeches.
Built for institutional speech moderation in a low-resource NLP setting (Brazilian Portuguese): a BERTimbau-family classifier with explicit uncertainty quantification and a stable tool contract for LLM clients (Cursor, Claude Desktop, MCP Inspector).
Table of Contents
- Summary
- Architecture
- Demo
- Key Features
- Quickstart via Docker
- Installation Tutorial
- Usage Tutorial
- Connect to Cursor / Claude Desktop
- Sample Output
- Project Layout
- Inference Pipeline
- Troubleshooting
- License
Summary
Legislative chambers produce a continuous stream of floor speeches and digital rhetoric. Offensive language, ad-hominem attacks, and hate speech in that stream are costly to review manually and poorly covered by English-centric moderation stacks.
This repository is the serving layer of a parliamentary discourse auditor:
| Layer | What it does |
|---|---|
| MCP tool | Exposes audit_parliamentary_speech(text) over stdio for assistants and IDE agents |
| Inference engine | Tokenize β BERTimbau-family forward pass β softmax β Shannon entropy β structured JSON |
| Human-in-the-loop | requires_human_review=true when entropy (> 0.60) (ambiguous predictions) |
Modeling (corpus, taxonomy, training, metrics, results, figures) lives in a dedicated document:
π docs/MODELING.md β full modeling & evaluation specification
Reproducible experiments (notebook + pipeline) and raw tables:
- notebooks/ β
experiments_hierarchy_imbalance.ipynb+experimentos_pipeline.py - docs/results/ β CSV / JSON metrics
- docs/figures/ β heatmaps, confusion matrices, ROC/PR
Runtime model strategy (important)
| Stage | Checkpoint | Purpose |
|---|---|---|
| Default | alissonf216/parliamentary-bertimbau-auditor |
Fine-tuned parliamentary BERTimbau (4-class taxonomy) β see docs/MODELING.md |
Override without code changes:
export PARLIAMENTARY_NLP_MODEL_ID="alissonf216/parliamentary-bertimbau-auditor"
parliamentary-nlp-mcp
Canonical labels: NEUTRAL, GENERIC_OFFENSE, TARGETED_OFFENSE, EXPLICIT_HATE_SPEECH.
Architecture
The server is a thin MCP faΓ§ade over a fine-tuned transformer. Agents talk MCP over stdio; weights load lazily from Hugging Face on the first tool call.
flowchart LR
subgraph Clients
Claude[Claude Desktop]
Cursor[Cursor / IDE agent]
Inspector[MCP Inspector]
end
subgraph "This repository"
MCP["MCP Server<br/>audit_parliamentary_speech"]
Engine["Inference engine<br/>tokenize β softmax β Shannon entropy"]
end
HF["Hugging Face<br/>parliamentary-bertimbau-auditor"]
Claude -->|MCP stdio| MCP
Cursor -->|MCP stdio| MCP
Inspector -->|MCP stdio| MCP
MCP --> Engine
Engine -->|lazy download / cache| HF
Demo
Screen capture of the tool classifying a parliamentary utterance via an MCP client (Claude Desktop, Cursor, or MCP Inspector):
<!-- After recording, save as docs/demo/mcp-audit-demo.gif and uncomment:
-->
Add your demo: record a short GIF/video of
audit_parliamentary_speechreturningclassification,confidence, andrequires_human_review, then place it atdocs/demo/mcp-audit-demo.gif(seedocs/demo/README.md).
Until a recording is available, use the Sample Output JSON and the MCP Inspector walkthrough below.
Key Features
| Feature | Detail |
|---|---|
| MCP / FastMCP integration | Single tool audit_parliamentary_speech over stdio (SDK 1.x FastMCP or 2.x MCPServer), ready for Cursor / Claude Desktop / MCP Inspector |
| Portuguese BERT backbone | Default: alissonf216/parliamentary-bertimbau-auditor; override via PARLIAMENTARY_NLP_MODEL_ID |
| Research taxonomy | Canonical labels: NEUTRAL, GENERIC_OFFENSE, TARGETED_OFFENSE, EXPLICIT_HATE_SPEECH (see MODELING.md) |
| Uncertainty quantification | Softmax probabilities + Shannon entropy (H(X)=-\sum P(x)\log P(x)); requires_human_review=true when entropy (> 0.60) |
| Lazy singleton load | Model weights download on first tool call, not at import time |
| Documented evaluation | Stratified CV, imbalance strategies, Flat / binary / cascade β MODELING.md + notebooks/ + figures |
| Docker image | Reproducible runtime via Dockerfile + docker compose (HF cache volume) |
Quickstart via Docker
Requires Docker with Compose v2.
1 β Build and start the MCP server
git clone https://github.com/alissonf216/parliamentary-nlp-mcp.git
cd parliamentary-nlp-mcp
docker compose up --build
The container entrypoint is parliamentary-nlp-mcp (MCP over stdio). It will look idle in the terminal until a client attaches β that is expected. Model weights download on the first tool call and persist in the hf-cache volume.
Optional overrides (create a local .env or export before compose up):
export PARLIAMENTARY_NLP_MODEL_ID=alissonf216/parliamentary-bertimbau-auditor
# export HF_TOKEN=hf_... # only if the checkpoint is private
docker compose up --build
2 β Point an MCP client at the container
One-shot interactive run (recommended for Claude Desktop / Cursor):
{
"mcpServers": {
"parliamentary-nlp": {
"command": "docker",
"args": [
"compose",
"-f",
"/absolute/path/to/parliamentary-nlp-mcp/docker-compose.yml",
"run",
"--rm",
"-i",
"parliamentary-nlp-mcp"
]
}
}
}
Or a direct image run after docker compose build:
docker compose run --rm -i parliamentary-nlp-mcp
Prefer a local venv instead? Skip to Installation Tutorial.
Installation Tutorial
Follow these steps from a clean machine. Commands assume macOS / Linux; Windows notes are included inline.
Step 0 β Prerequisites
| Requirement | Why |
|---|---|
| Python 3.10+ | Runtime for the package (python3 --version) |
| pip / venv | Dependency isolation |
| ~500 MB free disk | First download of the Hugging Face checkpoint |
| Node.js 18+ (optional) | Only needed for the MCP Inspector (npx) |
Check your Python version:
python3 --version
# Expected: Python 3.10.x or newer
If
python3points to 3.9 or older, install a newer interpreter (Homebrew, pyenv, Conda, etc.) and use that binary in the steps below.
Step 1 β Clone the repository
git clone https://github.com/alissonf216/parliamentary-nlp-mcp.git
cd parliamentary-nlp-mcp
Or, if you already have the folder locally:
cd /path/to/parliamentary-nlp-mcp
Step 2 β Create and activate a virtual environment
python3 -m venv .venv
# macOS / Linux
source .venv/bin/activate
# Windows (PowerShell)
# .venv\Scripts\Activate.ps1
You should see (.venv) in your shell prompt.
Step 3 β Install the package (editable + dev tools)
pip install -U pip setuptools wheel
pip install -e ".[dev]"
What this does:
- installs
mcp,torch,transformers, and project code in editable mode - adds
pytestfor the test suite - registers the console command
parliamentary-nlp-mcp
Verify the install:
which parliamentary-nlp-mcp
python -c "import parliamentary_nlp; print(parliamentary_nlp.__version__)"
Step 4 β Run the unit tests (recommended)
Tests mock Hugging Face β no GPU and no model download:
pytest -v
Expected: all tests pass (e.g. 5 passed).
Usage Tutorial
There are three ways to use the auditor: Python API, MCP server + Inspector, or IDE / Claude Desktop.
Option A β Call the model from Python
Useful for notebooks, scripts, and debugging the prediction schema.
from parliamentary_nlp import ParliamentaryModel
# First run downloads and caches the default Hugging Face model
model = ParliamentaryModel()
result = model.predict(
"Esse parlamentar Γ© um corrupto incompetente e nΓ£o merece ocupar a cadeira."
)
print(result)
Use your own fine-tuned checkpoint:
model = ParliamentaryModel(
model_id="alissonf216/parliamentary-bertimbau-auditor"
)
print(model.predict("Senhor presidente, peΓ§o a palavra."))
Or via environment variable (also works for the MCP server):
export PARLIAMENTARY_NLP_MODEL_ID="alissonf216/parliamentary-bertimbau-auditor"
Option B β Run the MCP server locally
With the venv active:
parliamentary-nlp-mcp
Equivalents:
python -m parliamentary_nlp
python -m parliamentary_nlp.server
The process speaks MCP over stdio (it will look βidleβ in the terminal β that is normal). Stop it with Ctrl+C.
Option C β Interactive demo with MCP Inspector
Best way to try the tool without wiring an IDE yet.
- Keep the venv activated (so
parliamentary-nlp-mcpis onPATH). - In the same project directory, run:
npx @modelcontextprotocol/inspector parliamentary-nlp-mcp
- The Inspector opens in the browser.
- Connect to the server, then select the tool
audit_parliamentary_speech. - Pass a Portuguese string in the
textargument, for example:
O debate deve ser respeitoso e baseado em evidΓͺncias.
- Click Run. The first call may take a minute while the model downloads; later calls are faster.
If npx cannot find the command, pass the absolute path to the binary:
npx @modelcontextprotocol/inspector /absolute/path/to/parliamentary-nlp-mcp/.venv/bin/parliamentary-nlp-mcp
Connect to Cursor / Claude Desktop
Cursor
- Open Cursor Settings β MCP (or edit your MCP config JSON).
- Add a server entry. Prefer the absolute path to the venv binary so Cursor does not depend on your shell
PATH:
{
"mcpServers": {
"parliamentary-nlp": {
"command": "/absolute/path/to/parliamentary-nlp-mcp/.venv/bin/parliamentary-nlp-mcp",
"env": {
"PARLIAMENTARY_NLP_MODEL_ID": "alissonf216/parliamentary-bertimbau-auditor"
}
}
}
}
- Restart Cursor (or reload MCP servers).
- In chat, ask something like: βUse the parliamentary NLP auditor on this speech: β¦β β the client should invoke
audit_parliamentary_speech.
Claude Desktop
Edit the Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"parliamentary-nlp": {
"command": "/absolute/path/to/parliamentary-nlp-mcp/.venv/bin/parliamentary-nlp-mcp",
"env": {
"PARLIAMENTARY_NLP_MODEL_ID": "alissonf216/parliamentary-bertimbau-auditor"
}
}
}
}
Restart Claude Desktop and confirm the hammer / tools icon lists audit_parliamentary_speech.
Sample Output
Input (PT-BR): "Esse parlamentar Γ© um corrupto incompetente e nΓ£o merece ocupar a cadeira."
Output schema (illustrative):
{
"text": "Esse parlamentar Γ© um corrupto incompetente e nΓ£o merece ocupar a cadeira.",
"classification": "TARGETED_OFFENSE",
"confidence": 0.812345,
"entropy_uncertainty": 0.5412,
"class_probabilities": {
"NEUTRAL": 0.052101,
"GENERIC_OFFENSE": 0.098234,
"TARGETED_OFFENSE": 0.812345,
"EXPLICIT_HATE_SPEECH": 0.03732
},
"requires_human_review": false
}
Note: With
alissonf216/parliamentary-bertimbau-auditor,class_probabilitiesuses the 4-class research taxonomy above.
| Field | Meaning |
|---|---|
classification |
Argmax label after softmax |
confidence |
Softmax mass of the top class |
entropy_uncertainty |
Shannon entropy in nats, rounded to 4 decimals |
requires_human_review |
true if entropy (> 0.60) |
Project Layout
parliamentary-nlp-mcp/
βββ docs/
β βββ MODELING.md # Modeling & evaluation (with figures)
β βββ demo/ # GIF / screen capture of MCP in action
β βββ figures/ # Heatmaps, CMs, ROC/PR, bars
β βββ results/ # CSV + JSON experiment tables
βββ notebooks/
β βββ README.md
β βββ finetune_bertimbau_huggingface.ipynb # train + save for Hugging Face
β βββ experiments_hierarchy_imbalance.ipynb
β βββ experimentos_pipeline.py
βββ src/parliamentary_nlp/
β βββ __init__.py
β βββ __main__.py # python -m parliamentary_nlp
β βββ model.py # PyTorch / Hugging Face inference engine
β βββ server.py # MCP tool surface
βββ tests/
β βββ test_model.py
βββ Dockerfile
βββ docker-compose.yml
βββ pyproject.toml
βββ .gitignore
βββ README.md
For corpus design, label definitions, training protocol, metrics, and quantitative results, read docs/MODELING.md. To reproduce experiments, start from notebooks/README.md.
Inference Pipeline
- Tokenize with
AutoTokenizer(max_length=512, truncation on). - Forward pass via
AutoModelForSequenceClassificationundertorch.no_grad(). - Softmax over logits β class probabilities.
- Shannon entropy over the probability vector.
- Emit the structured
AuditResultdictionary consumed by the MCP tool.
Troubleshooting
| Problem | Fix |
|---|---|
Python 3.9 / requires a different Python |
Install Python 3.10+ and recreate .venv with that binary |
command not found: parliamentary-nlp-mcp |
Activate .venv, or use the absolute path under .venv/bin/ |
| First Inspector call hangs | Normal β model download. Check network / Hugging Face access |
| Cursor does not see the tool | Use absolute command path; restart MCP; confirm venv has the package installed |
| Want CPU-only torch | Install a CPU wheel from pytorch.org before pip install -e ".[dev]" if needed |
| Docker build is slow / large | First build pulls PyTorch; later builds use the layer cache. HF weights live in the hf-cache volume |
| Claude/Cursor + Docker: no tools | Use docker compose run --rm -i β¦ (stdin must stay open); prefer absolute path to docker-compose.yml |
License
MIT β see LICENSE. Model weights remain under their respective Hugging Face licenses (BERTimbau / fine-tuned checkpoint).
Citation / Research Context
This MCP server is the serving layer of a computational auditor for institutional discourse in Brazilian Portuguese: domain-adapted transformers, calibrated uncertainty, and human-review escalation. Modeling details, experimental protocol, and results are documented in docs/MODELING.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.