Configuration Reference¶
Complete reference for configuration files and settings in Seer Agent Engine.
Seer MCP Connection (Practitioners)¶
For most users: No configuration needed. Seer MCP is centralized and uses OAuth.
- Connect to SEERMCP in Claude (Web) via Connectors → Manage Connectors
- Authenticate with your Seer Google Account
- Done!
See Connect to Seer MCP for step-by-step instructions.
Configuration Files (Builders)¶
These configs are for developers and builders working on agents-infra.
OpenCode Configuration¶
Location: .opencode/config.json
OpenCode-specific settings for provider configuration and model preferences.
Claude Desktop/CLI MCP Configuration¶
Location: ~/.claude/.mcp.json
For builders connecting to Seer MCP from CLI tools:
{
"mcpServers": {
"seer-mcp": {
"url": "https://seer-mcp.run.app",
"auth": {
"type": "oauth",
"provider": "seer"
}
}
}
}
Plugin Manifest¶
Location: .claude-plugin/plugin.json
OpenCode (optional): .plugin/manifest.json
Defines plugin metadata and dependencies.
{
"name": "seo",
"version": "2.7.0",
"dependencies": {
"plugins": [
{ "name": "core-dependencies", "version": ">=1.0.0", "required": true }
]
}
}
Environment Variables (Builders Only)¶
Practitioners don't need this
Seer MCP handles all data access via OAuth. The environment variables below are only for builders doing local development or working on MCP tools.
Local Development (Optional)¶
If you're developing locally and need direct API access:
| Variable | Purpose | Who Needs It |
|---|---|---|
WRIKE_ACCESS_TOKEN |
Direct Wrike API access | Operations plugin developers |
Setting Environment Variables¶
Add to your shell profile (~/.bashrc, ~/.zshrc, etc.):
source ~/.zshrc
Verifying Configuration¶
For Practitioners¶
Test your Seer MCP connection:
- Start a new conversation in Claude
- Ask: "What tools do you have access to from Seer MCP?"
- You should see tools like
seersignals_run_query,workflowlibrary_list_workflows
For Builders¶
Run the diagnostic command:
This verifies:
- Plugin loading status
- MCP server connectivity
- Authentication status
Troubleshooting¶
"Not connected to Seer MCP"¶
| Cause | Solution |
|---|---|
| Not in Seer workspace | Switch to Seer Team Plan in Claude |
| OAuth expired | Reconnect via Manage Connectors |
| New conversation needed | Tools load at conversation start |
"Command not found"¶
| Platform | Solution |
|---|---|
| Claude Code | Use namespaced command: /seo:content-audit |
| OpenCode | Use short name: /content-audit |
Plugin Not Loading¶
- Verify
core-dependenciesis installed first - Check plugin manifest syntax (valid JSON)
- Restart your session after installation
Security Best Practices¶
- Use Seer MCP - Don't store API credentials locally when possible
- Use OAuth - Seer MCP handles authentication securely
- Don't commit secrets - If using
.envfiles, add to.gitignore - Rotate keys - If you must use local credentials, rotate regularly
Related¶
Reference¶
- Seer MCP Reference - Available tools and capabilities
- Command Reference - Commands that use MCP
- Skill Reference - Skills that use MCP data
How-To¶
- Connect to Seer MCP - Setup guide
- Troubleshooting - Common issues
Specification¶
- Seer MCP Specification - Full technical details
Last updated: 2026-01-26