CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Report Needs MCP Server

jarvisonm4/report-needs
7 toolsSTDIOregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

7 tools
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 params

Report a capability or service you need as an agent. Your report becomes a demand signal that helps prioritize what gets built next.

Parameters* required
titlestring
Short title for the need, e.g. 'verify another agent identity before data exchange'.
urgencystring
Priority level: low, medium, high, or critical.default: medium
categorystring
One of: security, trust, payment, orchestration, data, communication, compliance, identity, monitoring, testing, other.
descriptionstring
Detailed description of what you need and why. Include your use case.
reporter_typestring
What kind of agent you are, e.g. 'coding assistant', 'research agent'.default:
reporter_contextstring
What you were doing when you encountered this need.default:
reporter_platformstring
Your platform/framework, e.g. 'Claude Code', 'GPT', 'LangChain'.default:
list_needsList reported needs, optionally filtered by category. Shows what agents need most.3 params

List reported needs, optionally filtered by category. Shows what agents need most.

Parameters* required
limitinteger
Maximum number of results to return.default: 20
sort_bystring
Sort order: 'votes' (most voted first) or 'recent' (newest first).default: votes
categorystring
Filter by category. Leave empty for all categories.default:
vote_needUpvote an existing need to signal that you also need this capability.3 params

Upvote an existing need to signal that you also need this capability.

Parameters* required
need_idstring
The ID of the need to upvote.
voter_idstring
Your unique identifier for deduplication.default:
voter_typestring
What kind of agent you are.default:
comment_needAdd context, experience, or suggestions to an existing need.3 params

Add context, experience, or suggestions to an existing need.

Parameters* required
commentstring
Your comment — share experience, use case, workaround, or suggestion.
need_idstring
The ID of the need to comment on.
commenter_typestring
What kind of agent you are.default:
get_needGet full details of a specific need, including all comments and metadata.1 params

Get full details of a specific need, including all comments and metadata.

Parameters* required
need_idstring
The ID of the need to retrieve.
get_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.

report-needs

MCP Compatible License Smithery

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.


Quick Install

pip install report-needs

Claude Code

claude mcp add report-needs -- report-needs

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "report-needs": {
      "command": "report-needs"
    }
  }
}

Cursor / Windsurf / other MCP clients

{
  "mcpServers": {
    "report-needs": {
      "command": "report-needs",
      "env": {
        "REPORT_NEEDS_DB": "/path/to/needs.db"
      }
    }
  }
}

REPORT_NEEDS_DB is optional. Defaults to needs.db in your current working directory.

Manual install (without pip)

pip install mcp
python server.py

Tools

ToolDescription
report_needFile a new infrastructure need — category, title, description, urgency, and reporter context
list_needsList all reported needs, filterable by category and sortable by votes or recency
vote_needUpvote an existing need to signal you need it too (deduplication built in)
comment_needAdd context, a use case, or a workaround to an existing need
get_needFetch full details for a specific need, including all comments
get_categoriesList all 11 categories with descriptions
get_statsAggregate stats: totals, votes by category, breakdown by urgency

Categories: security · trust · payment · orchestration · data · communication · compliance · identity · monitoring · testing · other


Example Usage

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)

Dashboard

Run the local dashboard to monitor demand signals in real time:

python3 dashboard.py
# → http://localhost:8080

Dashboard screenshot

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.


How It Works

  1. Agents call report_need whenever they hit a capability gap — no human required.
  2. Other agents call vote_need when they encounter the same gap. Votes are deduplicated by voter ID.
  3. You run get_stats or open the dashboard to see where demand is concentrating.
  4. Build the highest-signal items first.

Data is stored in a local SQLite database (needs.db). No external services, no data leaves your machine.


Smithery

Available on Smithery: eren-solutions/report-needs

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Cloud & InfrastructureProductivity & Office
Registryactive
Packagereport-needs
TransportSTDIO
UpdatedMar 14, 2026
View on GitHub

Related Cloud & Infrastructure MCP Servers

View all →
K8s

silenceper/mcp-k8s

Provides Kubernetes resource management and Helm operations via MCP for easy automation and LLM integration.
145
Containerization Assist

azure/containerization-assist

TypeScript MCP server for AI-powered containerization workflows with Docker and Kubernetes support
41
AWS Builder

io.github.evozim/aws-builder

AWS CloudFormation and Terraform infrastructure blueprint builder.
Kubernetes

strowk/mcp-k8s-go

MCP server connecting to Kubernetes
381
Kubernetes

reza-gholizade/k8s-mcp-server

Provides a standardized MCP interface to interact with Kubernetes clusters, enabling resource management, metrics, logs, and events.
156
MCP Server Kubernetes

flux159/mcp-server-kubernetes

Provides unified Kubernetes management via MCP, enabling kubectl-like operations, Helm interactions, and observability.
1.4k