Overview
Pendium documentation — AI visibility, content workflows, agent-site hosting, and the MCP + REST integration surface.
Pendium is a GEO/AEO platform: it monitors and improves how AI assistants (ChatGPT, Claude, Gemini, Google AI Overviews) perceive and recommend your brand. These docs cover the product concepts, your hosted agent site, and the programmatic integration surface.
New here? Start with the Quickstart.
What's in these docs
- Product guides — Brand Setup (the inputs that ground everything), AI Visibility Score (what the score means and how scans work), Recommendations (turning a scan into a ranked action list), Outreach (earning citations from sources AI already trusts), Content Workflows (turn a seed into a batch of on-brand posts), and the Knowledge Base (what grounds your scans and content).
- Agent Site — your public, AI-readable site: Pages & Feed, Site Analytics & Search Console, serving it on your own domain via subdomain or subpath hosting, and mirroring posts to your CMS.
- Integrate — connect over the MCP server, call the REST API, and handle authentication and rate limits.
- For partners — agencies and consultants running Pendium across many brands.
Connect your AI agent
Pendium gives you three ways to access AI visibility data, content tools, and brand intelligence:
MCP Server — The recommended path for AI agents. Your agent discovers tools automatically and gets structured responses with context. Works with Claude.ai, ChatGPT, Claude Code, Cursor, Windsurf, and any MCP-compatible client.
Claude.ai / ChatGPT Connector — Add Pendium as a connector directly in Claude.ai or as an app in ChatGPT. No API key needed — you sign in with your Pendium account via OAuth.
REST API — Direct HTTP access for custom integrations, scripts, and environments that don't support MCP. Same data, standard curl/fetch interface.
What you can do
35 MCP tools and 9 REST API endpoints across six categories:
- Visibility — Trigger scans, poll results, get full reports, track score history, manage action items, inspect cited sources, run deep URL analyses and shareable preview reports, and look up any brand's public score.
- Content Strategy — Access content goals, brand voice guidelines, factsheets, and analyzed URLs.
- Content Workflows — Turn a seed into a batch of blog and social posts using brand voice, knowledge, and goals.
- Knowledge — Search a brand's knowledge base semantically and list ingested sources.
- Configuration — Manage topics, queries, and buyer personas (create, update, delete), and view account info.
- Utility — Send feedback to the Pendium team from an agent session.
The MCP server exposes all 35 tools. The REST API covers the core scanning, reporting, and configuration endpoints.
Quick start
Pick your platform and follow the setup instructions.
Connect Claude.ai or ChatGPT
These platforms connect via OAuth — no API key needed. You sign in with your Pendium account and the platform gets access automatically.
Claude.ai (web and desktop app):
- Go to Settings → Connectors (or Customize → Connectors)
- Click Add custom connector
- Enter the MCP server URL:
https://pendium.ai/api/mcp - Click Connect — you'll be redirected to sign in with your Pendium account
- After signing in, Claude.ai has access to all 35 Pendium tools
ChatGPT:
- Go to Settings → Connectors (or click your profile → Settings)
- Click Add App (or New App)
- Set the MCP Server URL to:
https://pendium.ai/api/mcp - Set Authentication to OAuth
- Click Advanced settings — ChatGPT will auto-discover the OAuth configuration
- Under Client registration, select Dynamic Client Registration (DCR)
- Check the consent box and click Create
- Click Connect — you'll be redirected to sign in with your Pendium account
After connecting, ask Claude or ChatGPT something like:
"Use Pendium to scan the AI visibility for my brand and tell me how AI platforms perceive it."
Connect a coding agent
For Claude Code, Cursor, Windsurf, and other MCP-compatible coding agents, add the MCP server URL. Your agent handles authentication automatically via OAuth — when you first connect, you'll be prompted to sign in with your Pendium account.
1. Add the MCP server
Any agent (universal) — works with Claude Code, Cursor, Windsurf, Claude Desktop, and any MCP-compatible agent. Add this JSON to your agent's MCP config file:
Config file locations:
- Cursor:
~/.cursor/mcp.json - Claude Code:
~/.claude.json - Windsurf:
~/.codeium/windsurf/mcp_config.json - Claude Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json
After adding, restart your agent (reload window in Cursor, restart CLI for Claude Code). You'll be prompted to sign in with your Pendium account on first use.
Platform-specific alternatives
Claude Code — one command:
Cursor (native url format in ~/.cursor/mcp.json):
Windsurf (native format in ~/.codeium/windsurf/mcp_config.json):
2. Start using it
Ask your agent something like:
"Scan the AI visibility for https://example.com and tell me how AI platforms perceive the brand."
The agent will use scan_visibility to trigger a scan, then poll with get_scan_status until results are ready.
Transport
The server uses Streamable HTTP transport, the standard MCP remote transport. Each request is stateless — no session management required. The server accepts GET, POST, and DELETE requests.
Agent prompt
Copy this into your agent's system prompt or project instructions to give it an overview of every Pendium tool. This isn't required — MCP tool descriptions are auto-discovered — but it helps agents pick the right tool faster.
Claude Skill (optional)
A Claude Skill is a small file that teaches your agent workflow patterns — which tools to call, in what order, and what to avoid. Drop it in and your agent skips the learning curve.
After downloading, place the file in your agent's skills folder:
- Claude Code:
~/.claude/skills/pendium/SKILL.md - Cursor:
~/.cursor/skills/pendium/SKILL.md
The MCP works without the skill. It just makes your agent faster at picking the right tool for the job.
Next steps
- Authentication — OAuth and API key details
- Rate Limiting — Request limits and error handling
MCP Tools:
- Tool Reference — All 35 tools at a glance
- Visibility Tools — Scanning, reports, cited sources, and score tracking
- Content Strategy Tools — Goals, brand voice, and factsheets
- Content Workflow Tools — Batch content from a seed
- Knowledge Tools — Semantic search and source management
- Configuration Tools — Topics, queries, personas, and account info
REST API:
- REST API Overview — Endpoints, examples, and response format
- Trigger a Scan — Start monitoring a brand
- Get Report — Full visibility report with raw LLM responses