Poggio
Docs
MCP Server

Poggio MCP Tools

Model Context Protocol server for Poggio account intelligence

Version 1.0.04 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

Example

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

fetch

Returns the full text of the requested account intelligence document.

Parameters

id: stringrequired

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": "..."
    }
  }
}