Integrations
OpenClaw

OpenClaw

Use Frontrun as a data source in your OpenClaw agent. Surface VC follow signals, convergence events, and classified entities directly in your agent's workflow.

Setup

Via MCP Server

Add to your OpenClaw agent's MCP configuration:

{
  "mcpServers": {
    "frontrun": {
      "command": "npx",
      "args": ["frontrun-mcp-server"],
      "env": {
        "FRONTRUN_API_KEY": "your_api_key"
      }
    }
  }
}

Your agent now has access to all Frontrun tools — tracking, convergence detection, classification, and search.

Via REST API

If your agent uses HTTP directly, call the REST API:

import requests
 
FRONTRUN = "https://frontrun.vc/v1"
HEADERS = {"X-API-Key": "your_api_key"}
 
# Get convergence signals
signals = requests.get(
    f"{FRONTRUN}/convergence",
    headers=HEADERS,
    params={"threshold": 3, "since": "7d"}
).json()

Agent Workflows

Daily deal flow monitor

Set your agent to check Frontrun daily and surface high-signal opportunities:

Agent prompt:
"Every morning, check Frontrun for:
1. Convergence signals (threshold 3+) from the last 24 hours
2. Trending entities with classification
3. Any new follows from [priority accounts]

Summarize findings and flag anything in AI/ML or Crypto sectors."

MCP tools used: frontrun_convergence, frontrun_trending, frontrun_new_follows

Automated classification pipeline

Let your agent build and maintain a custom classification layer:

Agent prompt:
"Create Frontrun classification rules for my investment thesis:
- AI Infrastructure: keywords 'inference', 'gpu cluster', 'model serving', 'llm ops'
- Developer Tools: keywords 'sdk', 'api platform', 'developer experience'
- DeFi: keywords 'defi', 'lending', 'amm', 'liquidity'

Then pull enriched follows weekly and flag anything matching these rules."

MCP tools used: frontrun_create_rule, frontrun_enriched_follows

VC activity tracker

Monitor specific investors for thesis changes:

Agent prompt:
"Track these VCs: @pmarca, @naval, @sequoia, @a]16zcrypto
Every week, pull their activity profiles (90-day window).
Compare sector breakdowns week-over-week.
Alert me if any VC shows a >20% shift in sector attention."

MCP tools used: frontrun_account_activity, frontrun_track

Research assistant

Use Frontrun data as context for deeper research:

Agent prompt:
"Search Frontrun for all AI/ML startups in the follow graph.
For any company followed by 3+ tracked accounts, research:
- What do they build?
- Who are their competitors?
- What stage are they at?
Draft a one-paragraph brief for each."

MCP tools used: frontrun_search, frontrun_convergence, frontrun_classify


Available MCP Tools

ToolDescription
frontrun_statusAccount status, balance, usage
frontrun_trackStart monitoring an X account
frontrun_untrackStop monitoring
frontrun_list_trackedList monitored accounts
frontrun_new_followsNew follows across tracked accounts
frontrun_snapshotCurrent follow list for an account
frontrun_convergenceMulti-account convergence signals
frontrun_trendingTrending entities by attention
frontrun_account_activityActivity profile: velocity, sectors
frontrun_searchSearch by sector, keyword, type
frontrun_enriched_followsNew follows + classification + rules
frontrun_classifyOn-demand entity classification
frontrun_create_ruleCreate classification rule
frontrun_list_rulesList your rules
frontrun_delete_ruleDelete a rule
frontrun_tagTag an entity
frontrun_list_tagsList tagged entities

Best Practices

  • Cache results — Data updates periodically, not in real time. Don't poll more than every 30 minutes.
  • Use convergence — It's the highest-signal endpoint. Threshold 3+ means multiple independent accounts noticed the same entity.
  • Build rules once — Classification rules persist. Set them up, then every /enriched call auto-applies them.
  • Monitor your balance — Call frontrun_status to check spend. Set up balance alerts to avoid interruptions.