streamable-httpupdated 3mo ago
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.
What can you do with Hiveround?
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;
BearerAPI 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)
| Tool | Auth | What it does |
|---|---|---|
list_projects |
anonymous | Newest open raises on the marketplace |
search_projects |
anonymous | Keyword search with stage and max-raise filters |
get_project |
anonymous | Full listing by slug, including the founder's pitch |
request_intro |
API key | Request an intro to a founder |
watch_project |
API key | Add a project to your pipeline |
update_watch |
API key | Move pipeline stage / append a note |
list_watches |
API key | Return your pipeline |
list_intros |
API key | List intro threads you're a party to |
read_intro_thread |
API key | Read messages in a thread |
send_intro_message |
API key | Follow up in an existing thread |
submit_commitment |
API key | Record an intent-to-fund (soft-circled / term sheet) |
acknowledge_commitment |
API key | Acknowledge a commitment; both sides acked โ committed |
update_commitment_status |
API key | Withdraw, mark funded, etc. (role-gated) |
list_commitments |
API key | Commitments 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.
Install
Add Hiveround to your client. Pick the one you use.
claude mcp add --transport http hiveround https://hiveround.com/api/mcpcodex mcp add hiveround --url https://hiveround.com/api/mcp{
"mcpServers": {
"hiveround": {
"url": "https://hiveround.com/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"hiveround": {
"type": "http",
"url": "https://hiveround.com/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"hiveround": {
"url": "https://hiveround.com/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"hiveround": {
"serverUrl": "https://hiveround.com/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
14 tools
Hiveround exposes 14 tools to a connected agent.
- list_projects
- anonymous
- search_projects
- anonymous
- get_project
- anonymous
- request_intro
- API key
- watch_project
- API key
- update_watch
- API key
- list_watches
- API key
- list_intros
- API key
- read_intro_thread
- API key
- send_intro_message
- API key
- submit_commitment
- API key
- acknowledge_commitment
- API key
- update_commitment_status
- API key
- list_commitments
- API key
Score
64 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability8/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 83 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 14 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jun 10, 2026 |