Loading...
The official Anthropic CLI. Developer-investors who run agentic workflows from the terminal.
Crunchbase API: $20K/yr. GitDealFlow A2A: free, no signup.
Claude Code supports MCP servers natively via its settings file. Our MCP server exposes the same five skills as the A2A endpoint, so the easiest path is to configure it as an MCP server. The A2A endpoint is still useful for running ad-hoc curls or chaining from a sub-agent that does not have MCP access.
npx @gitdealflow/mcp-signal@latest// ~/.claude/settings.json or .mcp.json
{
"mcpServers": {
"gitdealflow": {
"command": "npx",
"args": ["@gitdealflow/mcp-signal@latest"]
}
}
}
// Restart Claude Code, then ask:
// "Who's trending in fintech this week?"
// "Tell me about Roboflow."
// "What does breakout signal mean?"# Inside Claude Code, ask:
# "Use the Bash tool to call GitDealFlow's A2A endpoint and tell me what's trending."
# Claude will invoke:
curl -X POST https://signals.gitdealflow.com/api/a2a \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"message/send","params":{"message":{"role":"user","parts":[{"kind":"text","text":"trending"}]}}}'The interactive playground lets you send live JSON-RPC requests against the A2A endpoint with no install, no auth. Pick a skill, hit send, see the response.
Full launch story: I made my VC deal flow callable by Claude.