get_founder_context
Retrieve comprehensive founder intelligence to prepare for revenue conversations, including known information, behavioral patterns, and operational insights.
Instructions
Get a full context dump of everything Andru knows about this founder — organized by memory type (What I Know, Patterns I've Noticed, How You Operate). Used to prime any revenue conversation with accumulated intelligence.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/server.js:47-59 (handler)The MCP server's request handler delegates 'callTool' requests to the 'client.callTool' method, which proxies the execution to the backend API.
server.setRequestHandler( CallToolRequestSchema, async (request) => { if (!client) { return { content: [{ type: 'text', text: JSON.stringify({ error: 'ANDRU_API_KEY not configured. Tool execution requires an API key.' }) }], isError: true, }; } const { name, arguments: args } = request.params; try { return await client.callTool(name, args || {}); } catch (error) { - src/catalog.js:586-594 (registration)Definition of the 'get_founder_context' tool in the static tools catalog.
{ name: 'get_founder_context', description: 'Get a full context dump of everything Andru knows about this founder — organized by memory type (What I Know, Patterns I\'ve Noticed, How You Operate). Used to prime any revenue conversation with accumulated intelligence.', annotations: READ_ONLY, inputSchema: { type: 'object', properties: {}, }, },