Skip to main content
MCP resources are passive data sources that your AI tool can read at any time. Unlike tools (which perform actions), resources provide background context that helps your AI give better answers.
Resources are read automatically by your AI tool when relevant. You don’t need to request them directly - they’re always available in the background.

Available Resources

pgai://companies

Tracked CompaniesReturns a complete list of all companies your organisation is tracking in PG:AI - including name, domain, and company ID.Your AI uses this to understand which accounts you’re working with and to resolve company names when you ask questions like “Tell me about Airtable”.

pgai://territories

TerritoriesReturns all territories configured for your organisation - including territory name, assigned accounts, and any territory-level settings.Your AI uses this to understand how your accounts are organised and to scope requests like “Show me insights across my EMEA territory”.

How Resources Work

Resources differ from tools in a few important ways:
ResourcesTools
PurposeProvide background contextPerform specific actions
When usedAutomatically, as neededWhen you ask for something specific
DataAlways the same data (your companies, territories)Dynamic results based on your query
ExampleYour list of tracked companiesSearching for contacts at a company
When you ask your AI “What companies am I tracking?”, it reads the pgai://companies resource. When you ask “Search for CTO contacts at Airtable”, it uses the pgai_search tool.

Resource Data Format

Both resources return JSON arrays. Here’s what the data looks like:

Companies Resource

[
  {
    "id": "a1b2c3d4-...",
    "name": "Airtable",
    "domain": "airtable.com"
  },
  {
    "id": "e5f6g7h8-...",
    "name": "Harness",
    "domain": "harness.io"
  }
]

Territories Resource

[
  {
    "id": "t1u2v3w4-...",
    "name": "EMEA Enterprise",
    "company_count": 45
  },
  {
    "id": "x5y6z7a8-...",
    "name": "North America Mid-Market",
    "company_count": 120
  }
]
Resources are a great starting point for exploration. Ask your AI “What companies am I tracking?” to see your full account list, then drill into specific companies with follow-up questions.