newsroom-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@newsroom-mcpAdd evidence from SEC filing for Acme Corp"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
newsroom-mcp
Type-safe MCP server for investigative journalism. The sole, validating writer to an investigation's master-file.json — enforcing the evidentiary standards that prompt-based editing cannot guarantee.
Companion to newsroom-extension, the Claude Code / Gemini plugin that defines the investigation framework. The plugin teaches an LLM how to investigate; this server ensures the resulting evidence record is structurally correct.
Why
An LLM editing master-file.json directly will eventually:
Mark a claim
publishablewithout A1/A2 evidenceAssign a non-existent
DOC-id to a claimOverwrite a
collection_logentry instead of appendingSkip the Admiralty grade on a new evidence item
Any of these corrupts the chain of custody that protects the outlet in a libel proceeding. This server makes them impossible.
Related MCP server: agent-gate
Enforced invariants
Rule | Enforcement |
Admiralty grade required at intake |
|
Publishable gate |
|
Defamation gate |
|
Referential integrity | Every |
Append-only log |
|
Atomic writes | Serialize → temp file → |
Concurrent safety | In-process write queue serializes simultaneous tool calls |
Installation
Requires Node 18+. No global install needed — use npx.
npx @ehurrn/newsroom-mcpSetup
Each investigation is a directory with its own master-file.json. Point the server at it via NEWSROOM_WORKSPACE.
mkdir -p ~/investigations/city-hall-contracts
cd ~/investigations/city-hall-contracts
git init
# Install the evidence gate pre-commit hook
NEWSROOM_WORKSPACE=. npx @ehurrn/newsroom-mcp init-hookConnecting to your AI client
Claude Code
Add to ~/.claude/settings.json (global) or .claude/settings.json (project):
{
"mcpServers": {
"newsroom-mcp": {
"command": "npx",
"args": ["@ehurrn/newsroom-mcp"],
"env": {
"NEWSROOM_WORKSPACE": "/absolute/path/to/investigation"
}
}
}
}Cursor (.cursor/mcp.json)
{
"mcpServers": {
"newsroom-mcp": {
"command": "npx",
"args": ["@ehurrn/newsroom-mcp"],
"env": {
"NEWSROOM_WORKSPACE": "/absolute/path/to/investigation"
}
}
}
}Antigravity / agy
{
"mcpServers": {
"newsroom-mcp": {
"command": "npx",
"args": ["@ehurrn/newsroom-mcp"],
"env": {
"NEWSROOM_WORKSPACE": "/absolute/path/to/investigation"
}
}
}
}Switch investigations by changing NEWSROOM_WORKSPACE and relaunching the server.
Tools
init_master_file
Initialize a new investigation. Fails if master-file.json already exists. Seeds collection_log entry #1.
{
"id": "INV-2026-001",
"title": "City Hall Contracts",
"central_question": "Did Acme Corp receive preferential treatment?",
"opened": "2026-06-21",
"evidence_dir": "evidence/"
}read_master_file
Return the full current state. No arguments.
upsert_entity
Create or update an entity. Omit id to create (server assigns the next ENT-NNN).
{
"name": "Acme Corp",
"type": "company",
"roles": ["subject"],
"jurisdictions": ["Delaware", "New York"],
"identifiers": { "ein": "12-3456789" }
}add_evidence
Add an evidence item. Admiralty grading and a full custody block are required. Returns the assigned DOC-NNN.
{
"title": "Acme Corp 10-K (FY2025)",
"source_type": "regulatory-filing",
"reliability": "A",
"credibility": "1",
"custody": {
"obtained_from": "https://sec.gov/cgi-bin/browse-edgar?action=getcompany&CIK=...",
"obtained_date": "2026-06-21",
"method": "public-registry",
"hash": "sha256:abc123...",
"local_path": "evidence/acme-10k-fy2025.pdf",
"preservation_status": "preserved"
},
"summary": "Annual report disclosing related-party transactions with City vendor."
}Admiralty scale:
Reliability | Meaning |
A | Completely reliable (certified official record) |
B | Usually reliable |
C | Fairly reliable |
D | Not usually reliable |
E | Unreliable |
F | Cannot be judged |
Credibility | Meaning |
1 | Confirmed by independent sources |
2 | Probably true |
3 | Possibly true |
4 | Doubtful |
5 | Improbable |
6 | Cannot be judged |
update_claim_status
Create or update a claim. The publishable gate is enforced at write time — the server computes whether the linked evidence actually supports the flag, rather than trusting the caller.
{
"text": "Acme Corp received Contract C-2025-44 ($4.2M) without competitive bid, per City procurement records (DOC-001).",
"entity_ids": ["ENT-001"],
"evidence_ids": ["DOC-001"],
"status": "single-source",
"publishable": true,
"defamation_risk": "medium"
}append_collection_log
Manually append an audit entry. The log is append-only — entries cannot be edited or deleted.
{
"actor": "reporter-jeh",
"action": "comment-requested",
"refs": ["ENT-001"],
"notes": "Emailed Acme Corp comms director at press@acmecorp.com at 14:32 EST."
}Pre-commit hook
The hook scans working/ and drafts/ in the investigation workspace for cited CLM-NNN IDs and blocks commits where a cited publishable claim lacks qualifying evidence.
# Install into the current investigation workspace
npx @ehurrn/newsroom-mcp init-hook
# Run manually at any time
npx @ehurrn/newsroom-mcp validateExample gate failure:
✗ Evidence gate failed — commit blocked:
CLM-003: publishable claim has no A1/A2 evidence and status is not 'corroborated'
Fix: update master-file.json via newsroom-mcp tools, or set publishable:false
until evidence meets the A1/A2 or corroborated standard.Schema
master-file.json conforms to the schema defined in newsroom-extension. The vendored copy lives in schema/master-file.schema.json. To pull the latest:
node scripts/sync-schema.mjs /path/to/newsroom-extension
npm run codegenDevelopment
npm install # installs deps and runs codegen
npm run typecheck # tsc --noEmit
npm test # vitest run
npm run build # tsup → dist/License
Unlicense
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-quality-maintenanceA deterministic MCP server that enforces auditable workflows by requiring AI agents to provide structured justifications and obtain human approval for file operations. It provides a secure, tamper-evident pipeline for tracking agent intent and codebase changes through cryptographic signatures and SQLite indexing.Last updated
- AlicenseBqualityAmaintenanceAn MCP server that enforces fail-closed deterministic checks, independent refute-first review, and tamper-evident hash-chained receipts for AI agent outputs before claiming completion.Last updated43MIT
- Alicense-qualityBmaintenanceMCP server that enforces forensic methodology and prevents hallucinations by requiring evidence links and deterministic verification, exposing 129 forensic operations across 14 categories with auto-correlation and reasoning engine.Last updated1MIT
- AlicenseBqualityAmaintenanceLocal-first MCP server that transforms civil case PDFs into queryable cases with structural provenance, evidence IDs, and page-level verification for drafting and factual review.Last updated22Apache 2.0
Related MCP Connectors
Remote MCP for C2PA intake verifier MCP, structured receipts, audit logs, and reviewer-ready evidenc
MCP Spec Compliance MCP — audits any MCP server.json against the official Model Context Protocol
Remote MCP for C2PA disclosure policy MCP, structured receipts, audit logs, and reviewer-ready evide
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ehurrn/newsroom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server