Skip to content

Commit 68025e1

Browse files
ethanruheclaudebrianmacdonald-temporal
authored
docs: add 'Use with AI' page for MCP server setup (#4135)
* docs: add "Use with AI" page for MCP server setup Add documentation for connecting Temporal docs to AI tools via the MCP server at temporal.mcp.kapa.ai. Includes setup instructions for Claude Code, Claude Desktop, and other MCP-compatible tools. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Add note about anonymous Google auth requirement for MCP server Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> Co-authored-by: Brian MacDonald <brian.macdonald@temporal.io>
1 parent 7b24456 commit 68025e1

2 files changed

Lines changed: 60 additions & 0 deletions

File tree

docs/with-ai.mdx

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
---
2+
id: with-ai
3+
title: Use These Docs with AI
4+
sidebar_label: Use with AI
5+
description: Connect Temporal documentation to your AI tools for real-time, accurate answers.
6+
---
7+
8+
# Use These Docs with AI
9+
10+
Connect Temporal documentation directly to your AI assistant for accurate, up-to-date answers about Temporal.
11+
The Temporal docs MCP server gives AI tools real-time access to our documentation, so responses draw from current docs rather than training data.
12+
13+
The server requires anonymous authentication using any Google account to enforce rate limits and prevent abuse.
14+
We cannot see nor do we collect any contact information from this.
15+
16+
## Claude Code
17+
18+
Add the Temporal docs MCP server to Claude Code with a single command:
19+
20+
```bash
21+
claude mcp add --scope user --transport http temporal-docs https://temporal.mcp.kapa.ai
22+
```
23+
24+
This adds the server globally so it's available in all your projects.
25+
26+
To add it to a specific project only (stored in `.mcp.json`):
27+
28+
```bash
29+
claude mcp add --transport http temporal-docs https://temporal.mcp.kapa.ai
30+
```
31+
32+
After adding, restart Claude Code for the changes to take effect.
33+
34+
## Claude Desktop
35+
36+
1. Open Claude Desktop settings
37+
2. Navigate to **Settings > Connectors**
38+
3. Add a new MCP server with the URL: `https://temporal.mcp.kapa.ai`
39+
40+
## Other MCP-compatible tools
41+
42+
For any tool that supports the Model Context Protocol, use the following server URL:
43+
44+
```
45+
https://temporal.mcp.kapa.ai
46+
```
47+
48+
Configuration format varies by tool. Here's a generic JSON configuration:
49+
50+
```json
51+
{
52+
"mcpServers": {
53+
"temporal-docs": {
54+
"transport": "http",
55+
"url": "https://temporal.mcp.kapa.ai"
56+
}
57+
}
58+
}
59+
```

sidebars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -861,6 +861,7 @@ module.exports = {
861861
],
862862
},
863863
'glossary',
864+
'with-ai',
864865
// {
865866
// type: "autogenerated",
866867
// dirName: "./dev-guide", // '.' means the current docs folder

0 commit comments

Comments
 (0)