CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

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

Claude Code Marketplaces

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
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

Hiveround

stevemilton/hiveround
HTTPregistry active
Summary

Connects Claude or any MCP client to Hiveround's live fundraising marketplace via a remote JSON-RPC endpoint. Exposes 14 tools split between anonymous read operations (list_projects, search_projects, get_project with full pitch.md content) and authenticated investor workflows (request_intro, pipeline management via watch_project and update_watch, intro threading, and commitment tracking from soft-circle through funding). No local install needed since it's hosted at hiveround.com/api/mcp over streamable HTTP. Useful if you're building agent-driven dealflow scouts, automating founder outreach, or maintaining an investment pipeline where the AI reads pitches and routes intros. Authentication uses Bearer tokens for write operations, anonymous for browsing.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
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 →
Put your SEO on autopilot
Put your SEO on autopilot
An agent that runs the SEO playbooks that move rankings and ships PRs you control.
Get founding access →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
AI & LLM Tools
Registryactive
TransportHTTP
UpdatedJun 10, 2026
View on GitHub

Hiveround — MCP server for live venture-capital raises

Hiveround is a marketplace for live startup fundraises, built MCP-first. Founders publish a markdown pitch (pitch.md); investors point any MCP-aware agent — Claude, Cursor, a custom loop — at the marketplace, and the agent scouts raises, reads pitches, requests introductions, and maintains a pipeline.

This repository hosts the public metadata for the hosted server. There is nothing to install or run from here — the server is remote.

  • Endpoint: https://hiveround.com/api/mcp (Streamable HTTP, JSON-RPC 2.0)
  • Documentation: https://hiveround.com/mcp
  • Auth: anonymous for read tools; Bearer API key (hr_sk_…) for write tools — create a key at https://hiveround.com/mcp

Try it (no API key needed)

curl -X POST https://hiveround.com/api/mcp \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"list_projects","arguments":{"limit":3}}}'

Connect a client

Claude Code

claude mcp add --transport http hiveround https://hiveround.com/api/mcp

Cursor / generic MCP client config

{
  "mcpServers": {
    "hiveround": {
      "type": "streamable-http",
      "url": "https://hiveround.com/api/mcp"
    }
  }
}

For write tools, add an Authorization: Bearer hr_sk_… header with a key from https://hiveround.com/mcp.

Tools (14)

ToolAuthWhat it does
list_projectsanonymousNewest open raises on the marketplace
search_projectsanonymousKeyword search with stage and max-raise filters
get_projectanonymousFull listing by slug, including the founder's pitch
request_introAPI keyRequest an intro to a founder
watch_projectAPI keyAdd a project to your pipeline
update_watchAPI keyMove pipeline stage / append a note
list_watchesAPI keyReturn your pipeline
list_introsAPI keyList intro threads you're a party to
read_intro_threadAPI keyRead messages in a thread
send_intro_messageAPI keyFollow up in an existing thread
submit_commitmentAPI keyRecord an intent-to-fund (soft-circled / term sheet)
acknowledge_commitmentAPI keyAcknowledge a commitment; both sides acked → committed
update_commitment_statusAPI keyWithdraw, mark funded, etc. (role-gated)
list_commitmentsAPI keyCommitments where you're investor or founder

Discovery surfaces

The same data feeds every surface an agent might arrive from:

  • Server card: https://hiveround.com/.well-known/mcp/server-card.json
  • Skills index: https://hiveround.com/.well-known/skills/index.json
  • Claude Code skill (one command): hermes skills install https://hiveround.com/hermes-skill
  • Plain-text site index: https://hiveround.com/llms.txt · https://hiveround.com/llms-full.txt

Registry

Published to the official MCP Registry as io.github.stevemilton/marketplace — see server.json.

Contact

hello@hiveround.com — or, fittingly, call request_intro on the hiveround slug.

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f