Loading...
Visual workflow automation with AI nodes. Operators who prefer visual node-based pipelines over code.
Crunchbase API: $20K/yr. GitDealFlow A2A: free, no signup.
n8n's HTTP Request node hits our A2A endpoint with zero code. Drop one node, paste the JSON-RPC body, wire to a Send Email or Slack node downstream. Works as a no-code path to all five skills, and the AI Agent node can call A2A as a tool when you want LLM-driven branching.
// n8n HTTP Request node config:
// Method: POST
// URL: https://signals.gitdealflow.com/api/a2a
// Authentication: None
// Headers: Content-Type = application/json
// Body (JSON):
{
"jsonrpc": "2.0",
"id": 1,
"method": "message/send",
"params": {
"message": {
"role": "user",
"parts": [
{ "kind": "data", "data": { "skill": "get_trending_startups" } }
]
}
}
}
// Wire output to Set node to extract:
// {{ $json.result.artifacts[0].parts[0].data.startups }}// In n8n's AI Agent node, add a Custom Tool:
// Name: gitdealflow_query
// Description: "VC engineering signals."
// Schema: { skill: string, args: object }
// Code: HTTP request to https://signals.gitdealflow.com/api/a2a with body templated from inputs.
// The agent will pick when to call it based on user message.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.