Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions docs/with-ai.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,12 @@ Connect Temporal expertise directly to your AI assistant for accurate, up-to-dat
Temporal knowledge base MCP server gives AI tools real-time access to best practices compiled from our documentation, educational materials, community forum responses, and slack channels, so responses draw from current expertise
rather than training data.

The server requires anonymous authentication using any Google account to enforce rate limits and prevent abuse. We
cannot see nor do we collect any contact information from this.
:::info Authentication required

The Temporal Knowledge Base MCP Server is publicly available, but requires a one-time login with a Google or GitHub account to enforce rate limits and prevent abuse.
Only an opaque user ID is used for rate limiting. Your name, email, repositories, and other personal data are not accessed or collected.

:::

### Claude Code

Expand Down Expand Up @@ -148,21 +152,14 @@ claude mcp add --transport http temporal-docs https://temporal.mcp.kapa.ai

### Other MCP-compatible tools

For any tool that supports the Model Context Protocol, use the following server URL:
The Temporal Knowledge Base MCP Server URL is:

```
https://temporal.mcp.kapa.ai
```

Configuration format varies by tool. Here's a generic JSON configuration:

```json
{
"mcpServers": {
"temporal-docs": {
"transport": "http",
"url": "https://temporal.mcp.kapa.ai"
}
}
}
```
The server requires authentication through MCP OAuth.
Not all MCP clients support this protocol.
If your client supports MCP OAuth, it will open a browser window to verify with Google or GitHub on first connection.
If your client does not support MCP OAuth, you may need to use a stdio proxy that handles the OAuth flow and passes credentials to the remote server.
Check your client's documentation for details on connecting to OAuth-protected MCP servers.
Loading