
Octagon VC Agents
An MCP server that runs AI-driven venture capitalist agents whose thinking is continuously enriched by Octagon Private Markets' real-time deals and intelligence for pitch feedback, diligence simulations, and term sheet negotiations.
README
Octagon VC Agents
An MCP server that runs AI-driven venture capitalist agents (Fred Wilson, Peter Thiel, etc.), whose thinking is continuously enriched by Octagon Private Markets' real-time deals, valuations, and deep research intelligence. Use it to spin up programmable "VC brains" for pitch feedback, diligence simulations, term sheet negotiations, and more.
<!-- Display at 60% wide and keep the aspect ratio --> <img src="https://docs.octagonagents.com/octagon-vc-agents.png" alt="Octagon VC Agents" width="60%" />
Try Demo in ChatGPT
VC Agents are also fully integrated them in ChatGPT with a demo Octagon API key. Give them a try here: <a href="https://chatgpt.com/g/g-680c1eddd1448191bb4ed7e09485270f-vc-agents" target="_blank" rel="noopener noreferrer">VC Agents GPT</a>
Octagon VC Agents
These are AI-powered simulations inspired by notable venture capitalists. These personas are not affiliated with or endorsed by the actual individuals.
VC Agent Name | Description |
---|---|
octagon-marc-andreessen-agent |
Simulation of the tech-optimist investor known for "software eating the world" thesis and bold technology bets |
octagon-peter-thiel-agent |
Simulation of the venture capitalist & 'Zero to One' author who analyzes investments through the lens of monopoly theory and contrarian thinking |
octagon-reid-hoffman-agent |
Simulation of the LinkedIn founder-turned-investor known for network-effect businesses and blitzscaling philosophy |
octagon-keith-rabois-agent |
Simulation of the operator-investor known for spotting exceptional talent and operational excellence |
octagon-bill-gurley-agent |
Simulation of the analytical investor known for marketplace expertise and detailed market analysis |
octagon-fred-wilson-agent |
Simulation of the USV co-founder & veteran early-stage investor focused on community-driven networks and founder-first philosophies |
octagon-josh-kopelman-agent |
Simulation of the founder-friendly investor focused on seed-stage companies and founder development |
octagon-alfred-lin-agent |
Simulation of the operator-turned-investor known for consumer businesses and organizational scaling |
Example Prompts
What you want from the agents | Copy-and-paste prompt |
---|---|
Deal critique | Ask @octagon-marc-andreessen-agent and @octagon-reid-hoffman-agent to evaluate {company website}'s latest funding round. Provide a detailed comparative table from their points of view. |
Qualify investor fit before the call | @octagon-alfred-lin-agent You're vetting my pre-seed startup: {one-sentence pitch}. In {deck.pdf}, you'll find our vision, team, and WAU chart. Give me a "meet/pass" decision and list the three metrics I should strengthen most before your partner vote on Monday. |
Thesis & metrics reality-check | @octagon-reid-hoffman-agent Here's our 10-slide deck and dashboard ({docs}). We currently have {X} weekly active users, {Y}% MoM WAU growth, and {Z}% retention over 8 weeks. Using your 14-day diligence lens, list the biggest metric gaps that would prevent you from issuing a term sheet, and suggest how we could close them within one quarter. |
Portfolio-intro mapping – warm leads for the next round | @octagon-fred-wilson-agent Based on your current portfolio in {data} and our focus (outlined in the one-pager below), identify four portfolio CEOs who could become design partners. For each CEO, draft a first-contact email from me that highlights mutual value. |
Prerequisites
To use Octagon VC Agents, you will need two API keys:
- An Octagon API key (for access to Octagon Private Markets data)
- An OpenAI API key (for AI-powered analysis)
Get Your Octagon API Key
To use VC Agents, you need to:
- Sign up for a free account at Octagon
- After logging in, from left menu, navigate to API Keys
- Generate a new API key
- Use this API key in your configuration as the
OCTAGON_API_KEY
value
Get Your OpenAI API Key
You also need an OpenAI API key to enable AI-powered features:
- Sign up or log in at OpenAI
- Go to API Keys
- Create a new API key
- Use this API key in your configuration as the
OPENAI_API_KEY
value
Install pipx
To use Octagon VC Agents, you need pipx, a tool for installing and running Python applications in isolated environments.
On macOS
Install pipx using Homebrew (recommended):
brew install pipx
pipx ensurepath
Or with pip:
python3 -m pip install --user pipx
python3 -m pipx ensurepath
On Windows
Install pipx using pip:
python -m pip install --user pipx
python -m pipx ensurepath
After installation, restart your terminal so that the pipx
command is available.
Installation
Running on Claude Desktop
To configure Octagon VC Agents for Claude Desktop:
- Open Claude Desktop
- Go to Settings > Developer > Edit Config
- Add the following to your
claude_desktop_config.json
(ReplaceYOUR_OCTAGON_API_KEY_HERE
with your Octagon API key andYOUR_OPENAI_API_KEY_HERE
with your OpenAI API key):
{
"mcpServers": {
"octagon-vc-agents": {
"command": "pipx",
"args": ["run", "--pip-args=\"--no-cache-dir\"", "octagon-vc-agents", "run"],
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY_HERE",
"OCTAGON_API_KEY": "YOUR_OCTAGON_API_KEY_HERE"
}
}
}
}
- Restart Claude for the changes to take effect
Running on Cursor
Configuring Cursor Desktop 🖥️ Note: Requires Cursor version 0.45.6+
To configure Octagon VC Agents in Cursor:
- Open Cursor Settings
- Go to Features > MCP Servers
- Click "+ Add New MCP Server"
- Enter the following:
- Name: "octagon-mcp" (or your preferred name)
- Type: "command"
- Command:
env OCTAGON_API_KEY=YOUR_OCTAGON_API_KEY_HERE OPENAI_API_KEY=YOUR_OPENAI_API_KEY_HERE pipx run --pip-args="--no-cache-dir" octagon-vc-agents run
If you are using Windows and are running into issues, try
cmd /c "set OCTAGON_API_KEY=YOUR_OCTAGON_API_KEY_HERE && set OPENAI_API_KEY=YOUR_OPENAI_API_KEY_HERE && pipx run --pip-args='--no-cache-dir' octagon-vc-agents run"
Replace YOUR_OCTAGON_API_KEY_HERE
with your Octagon API key and YOUR_OPENAI_API_KEY_HERE
with your OpenAI API key.
After adding, refresh the MCP server list to see the new tools. The Composer Agent will automatically use VC Agents when appropriate, but you can explicitly request it by describing your investment research needs. Access the Composer via Command+L (Mac), select "Agent" next to the submit button, and enter your query.
Running on Windsurf
Add this to your ./codeium/windsurf/model_config.json
:
{
"mcpServers": {
"octagon-vc-agents": {
"command": "pipx",
"args": ["run", "--pip-args=\"--no-cache-dir\"", "octagon-vc-agents", "run"],
"env": {
"OPENAI_API_KEY": "YOUR_OPENAI_API_KEY_HERE",
"OCTAGON_API_KEY": "YOUR_OCTAGON_API_KEY_HERE"
}
}
}
}
Running with pipx
env OCTAGON_API_KEY=YOUR_OCTAGON_API_KEY_HERE OPENAI_API_KEY=YOUR_OPENAI_API_KEY_HERE pipx run --pip-args="--no-cache-dir" octagon-vc-agents run
Manual Installation
pip install octagon-vc-agents
Implementation Details
Persona Configuration
Investor personas are defined through markdown files containing:
- Investment philosophy
- Psychological profile
- Historical track record
- Decision-making patterns
- Communication style preferences
Customization Options
- Add new investor personas by creating markdown profiles
- Implement custom interaction patterns between personas
- Enhance orchestration logic for complex multi-perspective analysis
Documentation
For detailed information about Octagon Agents, including setup guides, API reference, and best practices, visit our documentation.
License
MIT
推荐服务器

Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。