PlayerZero can connect to any remote MCP-compatible server, extending what AI agents can access during Player sessions. This lets you bring in data from observability platforms, log providers, internal tools, and any other service that exposes an MCP server.Documentation Index
Fetch the complete documentation index at: https://playerzero.ai/docs/llms.txt
Use this file to discover all available pages before exploring further.
What Remote MCP Servers Enable
- Extend agent capabilities — Give AI agents access to tools and data beyond your codebase, like monitoring dashboards, log search, or internal APIs
- Auto-discover tools — PlayerZero automatically detects available tools from the connected MCP server. No manual configuration of individual tools is required.
- Scoped access — Control which PlayerZero projects can use each connection
- Multiple connections — Connect as many MCP servers as you need, each with its own authentication and project scope
Public vs. Private MCP
There are two types of external MCP connections:- Public MCP — The MCP server is managed and hosted by a third party (e.g., Datadog, Coralogix, Pylon). You connect to the provider’s endpoint directly; no infrastructure setup is required on your side.
- Private MCP — The MCP server is hosted by you (or within your infrastructure) and exposed externally so PlayerZero can reach it. This is common for internal tools, proprietary APIs, or custom-built MCP servers.
Requirements
The external MCP server must be remote and hosted — PlayerZero connects via SSE (Server-Sent Events) or Streamable HTTP transport. Local stdio-based MCP servers (like those used by desktop AI assistants) are not supported.Example Use Cases
| Use Case | MCP Server | Connection Type | What It Enables |
|---|---|---|---|
| Observability | Datadog | Public MCP | Query monitors, search logs, retrieve dashboards and traces |
| Log analysis | Coralogix | Public MCP | Search and analyze application logs during debugging |
| Support | Pylon | Public MCP | Access support conversations, tickets, and customer context |
| Internal tools | Custom MCP server | Private MCP | Access internal APIs, runbooks, or proprietary data sources |
Setup
- In PlayerZero, navigate to Settings → Context → MCP
- Click New Connector
- Fill in the connection details:
- Name — A descriptive name for this connection (must be unique within your organization)
- Description — Optional context about what this server provides
- MCP Server URL — The remote MCP server endpoint (e.g.,
https://mcp.example.com/sse)
- Under Project Access, choose which PlayerZero projects can use this connection:
- All projects — Every project in your organization
- Specific projects — Select individual projects
- Under Authentication, choose the method that matches your MCP server:
Authentication Methods
| Method | When to Use | What You Provide |
|---|---|---|
| Auth Token | Server requires a Bearer token | A single access token, sent as Authorization: Bearer <token> |
| OAuth | Server supports OAuth 2.0 | Nothing for auto-registration — PlayerZero handles the OAuth flow automatically. For pre-configured OAuth, provide a client ID, client secret, and auth method. Optionally specify OAuth scopes — if left blank, PlayerZero uses the scopes advertised by the server. |
| No authentication | Server is publicly accessible or uses header-based auth only | Nothing |
Custom Headers
Custom headers are a modifier that can be combined with any of the three authentication methods above. Use them when the MCP server requires API keys or custom headers — one or more key-value pairs sent with every request. After selecting your authentication method, expand the Custom Headers section and add your key-value pairs. These headers are included in every request to the MCP server.- Click Add
- Authentication failed (401/403) — Verify your credentials are correct
- Connection timed out — Check that the MCP Server URL is correct and the server is reachable
- Could not resolve host — Verify the URL
Managing Connections
After setup, you can manage connections from the connection detail page:- Edit name and description — Update the connection’s display name and description
- Edit project access — Add or remove projects that can use this connection
- Update server URL — Change the MCP server endpoint
- Change authentication — Switch authentication type or update credentials (token, OAuth, custom headers)
- Re-authorize OAuth — Re-run the OAuth flow with new credentials without recreating the connection
- Manage tools — Enable or disable individual tools from the connection
- Delete — Remove the connection entirely
Recommended Providers
When creating a new connection, the MCP settings page shows a curated catalog of popular providers (including Datadog, Coralogix, and others). Selecting a recommended provider pre-fills connection settings like the MCP server URL and authentication hints, making setup faster.Manage Available Tools
By default, all tools discovered from an MCP server are enabled. Editors and owners can disable specific tools to control what agents have access to.- Open the connection detail page
- Click Manage in the Tools section
- Use the search bar to filter tools by name or description
- Uncheck tools you want to disable — disabled tools will not be available to agents
- Use Select all or Deselect all for bulk changes
- Click Save
Tool changes apply to newly-created Player sessions only. Existing sessions continue to use the tool set that was active when they were created.