The Campground MCP (Model Context Protocol) server lets external AI assistants — such as Claude.ai’s connectors — read data from your organization on your behalf. Connections are authorized through OAuth 2.1, so the assistant never sees your password and you can revoke access at any time. Each organization has its own MCP endpoint scoped to its subdomain, so signing in to Claude withDocumentation Index
Fetch the complete documentation index at: https://docs.campground.fyi/llms.txt
Use this file to discover all available pages before exploring further.
your-org.campground.fyi connects the assistant to that organization specifically. Consent always happens on your organization’s subdomain, where your existing session and branding apply.
The MCP server is available to organizations with AI platform access enabled. If you do not see the option to connect an AI assistant, contact your Campground account manager to request access.
How it works
When you connect an MCP-compatible AI client to Campground:- The client fetches OAuth discovery metadata from your organization’s subdomain at
https://your-org.campground.fyi/.well-known/oauth-protected-resource. - The metadata points the client at your organization’s authorization endpoint at
https://your-org.campground.fyi/oauth/authorize. - You are sent to the consent page on your organization’s subdomain, where you sign in (if you are not already) and approve the requested access.
- After you approve, the assistant receives an access token it can use to call the MCP server.
Connect Claude to your organization
Prerequisites:- An active Campground account with access to your organization’s platform.
- AI platform access enabled for your organization (ask your admin if you are unsure).
- An AI client that supports the Model Context Protocol, such as Claude.ai.
- In Claude, open Settings > Connectors and select Add connector.
- Enter your Campground organization URL — for example,
https://your-org.campground.fyi— as the MCP server URL. - Claude redirects you to your organization’s sign-in page. Sign in with your Campground credentials if prompted.
- Review the requested access on the consent screen and select Allow to authorize the connection.
- Claude returns to its own interface and confirms the connector is active.
Discovery endpoints
If you are building or configuring a custom MCP client, point it at your organization’s subdomain. The following endpoints are published per tenant:| Endpoint | Purpose |
|---|---|
/.well-known/oauth-protected-resource | Advertises the MCP resource URL and the authorization server for your organization. |
/.well-known/oauth-authorization-server | RFC 8414 OAuth 2.0 authorization server metadata, including the authorization, token, and registration endpoints. |
/oauth/authorize | Tenant-aware OAuth 2.1 authorization endpoint that routes consent through your organization’s subdomain. |
authorization_servers entry pointing at the same subdomain, so issuer-equality checks performed by strict OAuth clients succeed without additional configuration.
If your organization does not have AI platform access enabled, these endpoints return 404 Not Found.