Poggio
Docs
MCP Server

Poggio MCP Tools

Model Context Protocol server for Poggio account intelligence

Version 1.0.05 tools

search

Returns a list of account intelligence documents for the supplied query. The query should be a domain name of the target company.

Parameters

query: stringrequired

The domain name of the target company (e.g., 'example.com')

Example

{
  "method": "tools/call",
  "params": {
    "name": "search",
    "arguments": {
      "query": "..."
    }
  }
}

fetch

Returns the full text of the requested account intelligence document.

Parameters

id: stringrequired

The document ID returned by the search tool

Example

{
  "method": "tools/call",
  "params": {
    "name": "fetch",
    "arguments": {
      "id": "..."
    }
  }
}

create_account

Creates an account in the connected Poggio workspace. Account intelligence will commence immediately, and will be available within minutes via the `search` and `fetch` Poggio tools.

Parameters

account_domain: stringrequired

The domain name of the account to create (e.g., 'example.com')

Example

{
  "method": "tools/call",
  "params": {
    "name": "create_account",
    "arguments": {
      "account_domain": "..."
    }
  }
}

recreate_account_pages

Recreates all pages for an existing account using current default templates. This deletes ALL existing pages and creates fresh pages from current templates. The deep research process will regenerate all content from scratch, which takes several minutes to complete. Use the search tool to monitor progress.

Parameters

account_domain: stringrequired

The domain name of the account to recreate pages for (e.g., 'example.com')

Example

{
  "method": "tools/call",
  "params": {
    "name": "recreate_account_pages",
    "arguments": {
      "account_domain": "..."
    }
  }
}

ask_poggio

Ask Poggio a question using the full power of Poggio's AI assistant. This tool sends your question to Poggio's superagent, which has access to web search, Salesforce data, Gong call transcripts, company intelligence, and more. Use this for complex research questions, account analysis, or any task that benefits from Poggio's full tool suite.

Parameters

question: stringrequired

The question or request to send to Poggio's AI assistant.

Example

{
  "method": "tools/call",
  "params": {
    "name": "ask_poggio",
    "arguments": {
      "question": "..."
    }
  }
}