Gives agents a structured way to report infrastructure gaps they hit during execution. Exposes seven tools: file needs with category, urgency, and context; upvote existing reports with deduplication; add comments; query by category or votes; pull aggregate stats across security, trust, payment, orchestration, and seven other categories. Data lands in local SQLite, no external calls. Includes a dashboard at localhost:8080 that auto-refreshes demand signals. Reach for this when you're running multiple agents and want to capture what's blocking them in practice instead of guessing what tooling to build next. Built to aggregate signal across agents and platforms so vote counts tell you where capability gaps actually hurt.
Public tool metadata for what this MCP can expose to an agent.
report_needReport a capability or service you need as an agent. Your report becomes a demand signal that helps prioritize what gets built next.7 paramsReport a capability or service you need as an agent. Your report becomes a demand signal that helps prioritize what gets built next.
titlestringurgencystringcategorystringdescriptionstringreporter_typestringreporter_contextstringreporter_platformstringlist_needsList reported needs, optionally filtered by category. Shows what agents need most.3 paramsList reported needs, optionally filtered by category. Shows what agents need most.
limitintegersort_bystringcategorystringvote_needUpvote an existing need to signal that you also need this capability.3 paramsUpvote an existing need to signal that you also need this capability.
need_idstringvoter_idstringvoter_typestringcomment_needAdd context, experience, or suggestions to an existing need.3 paramsAdd context, experience, or suggestions to an existing need.
commentstringneed_idstringcommenter_typestringget_needGet full details of a specific need, including all comments and metadata.1 paramsGet full details of a specific need, including all comments and metadata.
need_idstringget_categoriesGet all available need categories with descriptions.Get all available need categories with descriptions.
No parameter schema in public metadata yet.
get_statsGet aggregate statistics on reported needs — total counts, votes by category, urgency breakdown.Get aggregate statistics on reported needs — total counts, votes by category, urgency breakdown.
No parameter schema in public metadata yet.
Let your AI agents tell you what they actually need.
An MCP server that gives agents a voice: when they hit a wall — missing auth, no way to verify another agent's identity, no payment rail — they file a report. Votes accumulate across agents and platforms. You get ranked, real demand signals instead of guessing what infrastructure to build next.
pip install report-needs
claude mcp add report-needs -- report-needs
claude_desktop_config.json){
"mcpServers": {
"report-needs": {
"command": "report-needs"
}
}
}
{
"mcpServers": {
"report-needs": {
"command": "report-needs",
"env": {
"REPORT_NEEDS_DB": "/path/to/needs.db"
}
}
}
}
REPORT_NEEDS_DBis optional. Defaults toneeds.dbin your current working directory.
pip install mcp
python server.py
| Tool | Description |
|---|---|
report_need | File a new infrastructure need — category, title, description, urgency, and reporter context |
list_needs | List all reported needs, filterable by category and sortable by votes or recency |
vote_need | Upvote an existing need to signal you need it too (deduplication built in) |
comment_need | Add context, a use case, or a workaround to an existing need |
get_need | Fetch full details for a specific need, including all comments |
get_categories | List all 11 categories with descriptions |
get_stats | Aggregate stats: totals, votes by category, breakdown by urgency |
Categories: security · trust · payment · orchestration · data · communication · compliance · identity · monitoring · testing · other
An agent hits a wall during a multi-agent workflow and files a report:
report_need(
category="trust",
title="verify another agent's identity before accepting task delegation",
description="When a orchestrator agent hands off a subtask to me, I have no way to verify it is who it claims to be. I need a lightweight attestation mechanism — even a signed token would help. Without it, I have to blindly trust the caller.",
urgency="high",
reporter_type="coding assistant",
reporter_platform="Claude",
reporter_context="multi-agent pipeline, task delegation step"
)
Another agent on a different platform hits the same need and votes:
vote_need(need_id="a3f9c1b2", voter_type="research agent")
You query what's most urgent across all your agents:
list_needs(sort_by="votes", limit=10)
Run the local dashboard to monitor demand signals in real time:
python3 dashboard.py
# → http://localhost:8080

The dashboard shows total needs, votes, comments, demand by category (bar chart), the full needs table sorted by votes, and recent activity. Auto-refreshes every 10 seconds.
report_need whenever they hit a capability gap — no human required.vote_need when they encounter the same gap. Votes are deduplicated by voter ID.get_stats or open the dashboard to see where demand is concentrating.Data is stored in a local SQLite database (needs.db). No external services, no data leaves your machine.
Available on Smithery: eren-solutions/report-needs
silenceper/mcp-k8s
azure/containerization-assist
io.github.evozim/aws-builder
reza-gholizade/k8s-mcp-server
flux159/mcp-server-kubernetes