Before you start
You need:- A 1Club account with access to the organization you want to connect.
- The settings.manage.organization permission, which is what lets you authorize a connection. Owners and admins hold it.
- A paid 1Club plan. MCP and API access are locked on free plans and during a trial.
- A client that supports remote MCP servers over HTTP, with OAuth.
https://mcp.1club.ai/discovery. It searches published marketplace data and does not require sign-in.
Connect the admin server
1
Add a custom MCP connection
Open your assistant’s apps, connectors, or MCP settings. Create a custom remote MCP connection and enter
https://mcp.1club.ai/admin.2
Start the connection
Select Connect, Authenticate, or the equivalent action. The client discovers 1Club’s OAuth configuration automatically.
3
Sign in to 1Club
Sign in on the 1Club authorization page. If you manage more than one organization, pick the one the assistant should access. A connection is bound to exactly one organization.
4
Review and authorize access
The page lists the read access the client asked for under This assistant will be able to. Everything that changes data appears below it, under Also allow it to make changes?, as its own checkbox that starts unticked.Leave every box unticked and the assistant gets read-only access, even if the client asked for everything. Tick only the capabilities you want it to have, then select Allow access to your organization.
5
Test the connection
Ask: “Which 1Club organization are you connected to?” The assistant should call
get_account and return the selected organization and granted scopes.Allow stays disabled until at least one capability is granted. That only
bites when a client requests no read access at all: it has nothing to list
under This assistant will be able to, so you have to tick one of its write
boxes to connect it. Every client that asks for any read scope can be approved
with nothing ticked.
Claude
Claude and Claude Desktop support OAuth-based remote MCP connectors.- Open Settings > Connectors.
- Select Add custom connector.
- Enter a name such as “1Club” and the URL
https://mcp.1club.ai/admin. - Add the connector, then select Connect.
- Complete the 1Club sign-in and authorization flow.
- Enable the 1Club tools from Claude’s tools menu when you want to use them.
Claude Code
Claude Code speaks OAuth over HTTP MCP, so one command is enough and no header is needed:claude mcp list to confirm it is connected. For the anonymous marketplace server, use the same command with https://mcp.1club.ai/discovery.
ChatGPT
ChatGPT exposes custom MCP connections as apps. Availability and write-action support depend on your ChatGPT plan and workspace settings.- Ask a workspace admin to enable developer mode or custom MCP apps if required.
- Open Settings > Apps and create a custom app.
- Enter
https://mcp.1club.ai/adminas the MCP endpoint. - Choose OAuth authentication, then scan the tools.
- Complete the 1Club sign-in and authorization flow.
- Enable the app and select it from the tools menu in a new chat.
Other remote MCP clients
Use the same endpoint and choose OAuth when the client asks how to authenticate:
A request without a valid bearer token gets a
401 whose WWW-Authenticate header names the resource metadata document. That is the normal way to start the flow, not an error to work around.
Existing API-key connections
OAuth is the recommended path and the one to use for a new connection. An assistant that was connected with a Platform API key before OAuth existed keeps working: the admin server accepts any bearer credential the Platform API accepts, so a1club_sk_live_... key sent on Authorization still authenticates. This path stays available for developer-managed clients that cannot complete an interactive sign-in.
The remote configuration is the same endpoint with a request header:
1
Remove the header-based connection
Delete the custom connector, app, or MCP entry in the client. Clients cache server metadata, so re-adding it is more reliable than editing it in place.
2
Add it again with OAuth
Follow Connect the admin server above. Choose OAuth when the client asks how to authenticate, and do not enter any header.
3
Revoke the old API key
Once
get_account returns the right organization over the new connection, revoke the API key that assistant was using, so the credential stops working everywhere.Local stdio setup
A developer can also run the MCP server locally over stdio, which is what an editor or a script on your own machine talks to. This path has no OAuth: it authenticates with a Platform API key and is meant for local development. The server is not published to a package registry, so build it from themcp-server workspace of the product repository and start it with npm start. It reads these environment variables:
Set
BASE_URL explicitly. Left unset it points at a local API rather than failing, so an assistant aimed at production will simply find nothing there.
Point your client’s stdio command at the built entry point. There is no global binary to install.
Verify access
Confirm these checks after connecting:- Ask the assistant to call
get_account. Confirm the organization is correct, and read the reach fromeffectiveScopesrather thanscopes. - Ask for next week’s classes. This confirms
classes:readaccess. - Ask the assistant to list recent check-ins. This confirms
checkins:readaccess. - Before testing a write, use a disposable record and review the tool confirmation.
Review connected assistants
Go to Settings > Artificial Intelligence > AI assistants (MCP). The page shows the endpoint to hand to a client, and lists every assistant connected to this organization with who authorized it, the scopes it holds, and when it was last used. Connections appear here no matter who created them, because an assistant is authorized by whoever connects it rather than created on this page. Seeing what has access, and cutting it off, is what the page is for. Viewing it needs settings.read.organization; revoking needs settings.manage.organization.Disconnect or revoke
- Disconnecting in the MCP client removes the connection from that client.
- Revoking it in 1Club ends access immediately. The client must complete OAuth again to reconnect.
- There is nothing to rotate on an OAuth connection. The access and refresh credentials are managed by the client and 1Club, and never handled by you. An access token lasts an hour, and the client refreshes it silently. Each refresh issues a fresh pair, so an assistant in regular use stays connected indefinitely and 30 days is the idle limit, not a deadline.
- An approved scope set cannot be edited afterwards. To give an assistant a capability you did not tick, or to take one back, revoke the connection and authorize it again with the boxes you want.
- The authorizing person losing access. A connection carries the permission of whoever approved it. If that person loses settings.manage.organization, or leaves the organization, the connection is revoked the next time the assistant calls a tool.
- Long disuse. A client that has not been used for 90 days is deleted along with its tokens, so it has to register and authorize again.