get_full_pack
Retrieves the entire signal-interpretation library and metadata, enabling fine-tuning or full agent context for B2B buyer intent analysis.
Instructions
Returns the complete signal-interpretation library + metadata. Useful for fine-tuning or full agent context.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/main.ts:383-389 (registration)Tool registration: 'get_full_pack' is registered in the ListToolsRequestSchema handler with name 'get_full_pack' and an empty input schema (no parameters required). The description says it returns the complete signal-interpretation library + metadata for fine-tuning or full agent context.
{ name: "get_full_pack", description: "Returns the complete signal-interpretation library + metadata. Useful for fine-tuning or full agent context.", inputSchema: { type: "object", properties: {} } } ] })); - src/main.ts:454-474 (handler)Handler implementation: When 'get_full_pack' is called, it returns a JSON object containing the pack name, author credentials, and all six signal modules (HIRING_SIGNALS, FUNDING_SIGNALS, TECH_STACK_SIGNALS, LEADERSHIP_SIGNALS, EXPANSION_SIGNALS, SIGNAL_WEIGHTS) plus MCP metadata.
if (name === "get_full_pack") { return { content: [{ type: "text", text: JSON.stringify({ pack: "B2B Buyer-Signal MCP — Complete Library v1.0", author: "Elisabeth Hitz", credentials: ["10+ years B2B enterprise sales experience", "5+ years EMEA territory ownership"], modules: { hiring_signals: HIRING_SIGNALS, funding_signals: FUNDING_SIGNALS, tech_stack_signals: TECH_STACK_SIGNALS, leadership_signals: LEADERSHIP_SIGNALS, expansion_signals: EXPANSION_SIGNALS, signal_weights: SIGNAL_WEIGHTS }, _meta: MCP_META }, null, 2) }] }; }