diff --git a/app/en/get-started/mcp-clients/_meta.tsx b/app/en/get-started/mcp-clients/_meta.tsx
index c54cd6ef1..7853f9115 100644
--- a/app/en/get-started/mcp-clients/_meta.tsx
+++ b/app/en/get-started/mcp-clients/_meta.tsx
@@ -17,6 +17,9 @@ const meta: MetaRecord = {
"claude-desktop": {
title: "Claude Desktop",
},
+ "claude-code": {
+ title: "Claude Code",
+ },
"visual-studio-code": {
title: "Visual Studio Code",
},
diff --git a/app/en/get-started/mcp-clients/claude-code/page.mdx b/app/en/get-started/mcp-clients/claude-code/page.mdx
new file mode 100644
index 000000000..0caee4c1e
--- /dev/null
+++ b/app/en/get-started/mcp-clients/claude-code/page.mdx
@@ -0,0 +1,51 @@
+import { Steps, Callout } from "nextra/components";
+import { SignupLink } from "@/app/_components/analytics";
+
+# Use Arcade in Claude Code
+
+
+
+
+Connect Claude Code to an Arcade MCP Gateway using the Arcade Headers authentication mode.
+
+
+
+
+
+1. Create an Arcade account
+2. Get an [Arcade API key](/get-started/setup/api-keys)
+3. Create an [Arcade MCP Gateway](/guides/mcp-gateways) and select the tools you want to use
+
+
+
+
+
+ For Claude Code, we recommend setting your gateway auth mode to **Arcade Headers** so you
+ can authenticate via HTTP headers (no browser-based OAuth flow required).
+
+
+
+
+### Add your Arcade MCP Gateway
+
+Run the following to add your Arcade Gateway as a remote HTTP MCP server in Claude Code:
+
+```bash
+claude mcp add --transport http arcade "" \
+ --header "Authorization: Bearer " \
+ --header "Arcade-User-ID: "
+```
+
+### Verify the server was added
+
+```bash
+claude mcp get arcade
+claude mcp list
+```
+
+### Try it out
+
+Open Claude Code in your project and ask it to use one of the tools from your gateway.
+
+
+
diff --git a/app/en/get-started/mcp-clients/mcp-client-grid.tsx b/app/en/get-started/mcp-clients/mcp-client-grid.tsx
index 9dc79abc8..1ffbb39e2 100644
--- a/app/en/get-started/mcp-clients/mcp-client-grid.tsx
+++ b/app/en/get-started/mcp-clients/mcp-client-grid.tsx
@@ -16,6 +16,12 @@ const mcpClients = [
description: "Anthropic's desktop app for Claude with MCP integration",
invertInLight: true,
},
+ {
+ key: "claude-code",
+ name: "Claude Code",
+ description: "Anthropic's coding agent CLI with MCP support",
+ invertInLight: true,
+ },
{
key: "visual-studio-code",
name: "Visual Studio Code",
@@ -32,6 +38,7 @@ const mcpClients = [
const logoSrc = {
cursor: "/images/icons/cursor.png",
"claude-desktop": "/images/icons/claude.png",
+ "claude-code": "/images/icons/claude.png",
"visual-studio-code": "/images/icons/vscode.svg",
"copilot-studio": "/images/icons/microsoft-copilot-studio.png",
};
diff --git a/next.config.ts b/next.config.ts
index 8b4d16f0d..1b38d2fdd 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -559,6 +559,11 @@ const nextConfig: NextConfig = withLlmsTxt({
destination: "/:locale/get-started/mcp-clients/claude-desktop",
permanent: true,
},
+ {
+ source: "/:locale/home/mcp-clients/claude-code",
+ destination: "/:locale/get-started/mcp-clients/claude-code",
+ permanent: true,
+ },
{
source: "/:locale/home/mcp-clients/cursor",
destination: "/:locale/get-started/mcp-clients/cursor",
diff --git a/public/_markdown/en/get-started/about-arcade.md b/public/_markdown/en/get-started/about-arcade.md
index 9aecb4868..47f0d2732 100644
--- a/public/_markdown/en/get-started/about-arcade.md
+++ b/public/_markdown/en/get-started/about-arcade.md
@@ -74,7 +74,7 @@ const response = await client.tools.execute({
console.log(response.output.value);
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Docs Home](/en/home.md)
[Get an API key](/en/get-started/setup/api-keys.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks.md b/public/_markdown/en/get-started/agent-frameworks.md
index e9adc32df..095af07ab 100644
--- a/public/_markdown/en/get-started/agent-frameworks.md
+++ b/public/_markdown/en/get-started/agent-frameworks.md
@@ -23,7 +23,7 @@ These guides are for developers building AI applications who need to connect Arc
[ Mastra Agent Framework](/guides/agent-frameworks/mastra/overview.md)
[ Vercel AI Agent Framework](/guides/agent-frameworks/vercelai.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Build an MCP server for custom tools](/en/get-started/quickstarts/mcp-server-quickstart.md)
[Setup Arcade with your LLM (Python)](/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/crewai/custom-auth-flow.md b/public/_markdown/en/get-started/agent-frameworks/crewai/custom-auth-flow.md
index 52dc195e2..bfd797fd9 100644
--- a/public/_markdown/en/get-started/agent-frameworks/crewai/custom-auth-flow.md
+++ b/public/_markdown/en/get-started/agent-frameworks/crewai/custom-auth-flow.md
@@ -141,7 +141,7 @@ print(result)
Now you’re ready to integrate Arcade tools with a custom auth flow into your own CrewAI team.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Using Arcade tools](/en/get-started/agent-frameworks/crewai/use-arcade-tools.md)
[Overview](/en/get-started/agent-frameworks/google-adk/overview.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/crewai/use-arcade-tools.md b/public/_markdown/en/get-started/agent-frameworks/crewai/use-arcade-tools.md
index 7a8cbb4a8..50e074e56 100644
--- a/public/_markdown/en/get-started/agent-frameworks/crewai/use-arcade-tools.md
+++ b/public/_markdown/en/get-started/agent-frameworks/crewai/use-arcade-tools.md
@@ -99,7 +99,7 @@ Now that you have integrated Arcade tools into your CrewAI team, you can:
- Customize the ’s prompts for specific tasks.
- Customize the authorization and execution flow to meet your application’s requirements.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup Arcade with your LLM (Python)](/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md)
[Custom auth flow](/en/get-started/agent-frameworks/crewai/custom-auth-flow.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/google-adk/overview.md b/public/_markdown/en/get-started/agent-frameworks/google-adk/overview.md
index 5e9126e44..217228ed7 100644
--- a/public/_markdown/en/get-started/agent-frameworks/google-adk/overview.md
+++ b/public/_markdown/en/get-started/agent-frameworks/google-adk/overview.md
@@ -132,7 +132,7 @@ Ready to start building with Arcade and OpenAI ? Check out these guides:
Enjoy exploring Arcade and building powerful AI-enabled applications.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Custom auth flow](/en/get-started/agent-frameworks/crewai/custom-auth-flow.md)
[Setup Arcade with Google ADK (Python)](/en/get-started/agent-frameworks/google-adk/use-arcade-tools.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md b/public/_markdown/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md
index 0ce4110f2..712132156 100644
--- a/public/_markdown/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md
+++ b/public/_markdown/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md
@@ -213,7 +213,7 @@ for await (const event of events) {
Now you’re ready to explore more LangChain tools with Arcade. Try integrating additional Servers and crafting more complex queries to enhance your AI workflows.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup Arcade with LangChain (TypeScript)](/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md)
[Mastra](/en/get-started/agent-frameworks/mastra.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py.md b/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py.md
index e860f6143..dcb305dc5 100644
--- a/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py.md
+++ b/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py.md
@@ -856,7 +856,7 @@ if __name__ == "__main__":
asyncio.run(main())
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup Arcade with Google ADK (Python)](/en/get-started/agent-frameworks/google-adk/use-arcade-tools.md)
[Setup Arcade with LangChain (TypeScript)](/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md b/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md
index 642153d5b..4bb482600 100644
--- a/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md
+++ b/public/_markdown/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-ts.md
@@ -744,7 +744,7 @@ main().catch((err) => console.error(err));
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup Arcade with LangChain (Python)](/en/get-started/agent-frameworks/langchain/use-arcade-with-langchain-py.md)
[Authorizing existing tools](/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/mastra.md b/public/_markdown/en/get-started/agent-frameworks/mastra.md
index 08254f076..cda1f2664 100644
--- a/public/_markdown/en/get-started/agent-frameworks/mastra.md
+++ b/public/_markdown/en/get-started/agent-frameworks/mastra.md
@@ -960,7 +960,7 @@ emailDigestWorkflow.commit();
export { emailDigestWorkflow };
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Authorizing existing tools](/en/get-started/agent-frameworks/langchain/auth-langchain-tools.md)
[Overview](/en/get-started/agent-frameworks/openai-agents/overview.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/openai-agents/overview.md b/public/_markdown/en/get-started/agent-frameworks/openai-agents/overview.md
index 2f0665d92..786c6fd46 100644
--- a/public/_markdown/en/get-started/agent-frameworks/openai-agents/overview.md
+++ b/public/_markdown/en/get-started/agent-frameworks/openai-agents/overview.md
@@ -30,7 +30,7 @@ With Arcade and OpenAI , your agents can:
Browse the [full MCP server catalog](/resources/integrations.md) to see all available .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Mastra](/en/get-started/agent-frameworks/mastra.md)
[Setup (Python)](/en/get-started/agent-frameworks/openai-agents/setup-python.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-python.md b/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-python.md
index 08c632260..939e23c81 100644
--- a/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-python.md
+++ b/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-python.md
@@ -260,7 +260,7 @@ if __name__ == "__main__":
- Explore [creating custom tools](/guides/create-tools/tool-basics/build-mcp-server.md)
with the Arcade SDK
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/get-started/agent-frameworks/openai-agents/overview.md)
[Setup (TypeScript)](/en/get-started/agent-frameworks/openai-agents/setup-typescript.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-typescript.md b/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-typescript.md
index 55d89dd7e..5a1ed3056 100644
--- a/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-typescript.md
+++ b/public/_markdown/en/get-started/agent-frameworks/openai-agents/setup-typescript.md
@@ -381,7 +381,7 @@ main().catch(console.error);
- Explore [creating custom tools](/guides/create-tools/tool-basics/build-mcp-server.md)
with the Arcade SDK
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup (Python)](/en/get-started/agent-frameworks/openai-agents/setup-python.md)
[Setup Arcade with OpenAI Agents SDK](/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md b/public/_markdown/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md
index 2f0665d92..786c6fd46 100644
--- a/public/_markdown/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md
+++ b/public/_markdown/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md
@@ -30,7 +30,7 @@ With Arcade and OpenAI , your agents can:
Browse the [full MCP server catalog](/resources/integrations.md) to see all available .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Mastra](/en/get-started/agent-frameworks/mastra.md)
[Setup (Python)](/en/get-started/agent-frameworks/openai-agents/setup-python.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md b/public/_markdown/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md
index b46dc0f55..c5918c888 100644
--- a/public/_markdown/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md
+++ b/public/_markdown/en/get-started/agent-frameworks/setup-arcade-with-your-llm-python.md
@@ -462,7 +462,7 @@ if __name__ == "__main__":
chat()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/get-started/agent-frameworks.md)
[Using Arcade tools](/en/get-started/agent-frameworks/crewai/use-arcade-tools.md)
diff --git a/public/_markdown/en/get-started/agent-frameworks/vercelai.md b/public/_markdown/en/get-started/agent-frameworks/vercelai.md
index c33815ac5..07da93456 100644
--- a/public/_markdown/en/get-started/agent-frameworks/vercelai.md
+++ b/public/_markdown/en/get-started/agent-frameworks/vercelai.md
@@ -945,7 +945,7 @@ export default function Chat() {
}
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Setup Arcade with OpenAI Agents SDK](/en/get-started/agent-frameworks/openai-agents/use-arcade-with-openai-agents.md)
[Overview](/en/get-started/mcp-clients.md)
diff --git a/public/_markdown/en/get-started/mcp-clients.md b/public/_markdown/en/get-started/mcp-clients.md
index 2b3f57756..8e13640e7 100644
--- a/public/_markdown/en/get-started/mcp-clients.md
+++ b/public/_markdown/en/get-started/mcp-clients.md
@@ -10,10 +10,11 @@ You can connect [Arcade MCP servers](/resources/integrations.md) to \-compatible
[ Cursor AI-powered code editor with built-in MCP support](/guides/tool-calling/mcp-clients/cursor.md)
[ Claude Desktop Anthropic's desktop app for Claude with MCP integration](/guides/tool-calling/mcp-clients/claude-desktop.md)
+[ Claude Code Anthropic's coding agent CLI with MCP support](/guides/tool-calling/mcp-clients/claude-code.md)
[ Visual Studio Code Microsoft's code editor with MCP extensions](/guides/tool-calling/mcp-clients/visual-studio-code.md)
[ Microsoft Copilot Studio Microsoft's AI agent platform with MCP integration](/guides/tool-calling/mcp-clients/copilot-studio.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Vercel AI SDK](/en/get-started/agent-frameworks/vercelai.md)
[Cursor](/en/get-started/mcp-clients/cursor.md)
diff --git a/public/_markdown/en/get-started/mcp-clients/claude-code.md b/public/_markdown/en/get-started/mcp-clients/claude-code.md
new file mode 100644
index 000000000..5ad4c4751
--- /dev/null
+++ b/public/_markdown/en/get-started/mcp-clients/claude-code.md
@@ -0,0 +1,49 @@
+---
+title: "Use Arcade in Claude Code"
+description: "Arcade - AI platform for developers"
+---
+[MCP Clients](/en/get-started/mcp-clients.md)
+Claude Code
+
+# Use Arcade in Claude Code
+
+## Outcomes
+
+Connect Claude Code to an Arcade Gateway using the Arcade Headers authentication mode.
+
+### Prerequisites
+
+1. Create an [Arcade](https://app.arcade.dev/register)
+
+2. Get an [Arcade API key](/get-started/setup/api-keys.md)
+
+3. Create an [Arcade MCP Gateway](/guides/mcp-gateways.md)
+ and select the you want to use
+
+For Claude Code, we recommend setting your gateway auth mode to **Arcade Headers** so you can authenticate via HTTP headers (no browser-based OAuth flow required).
+
+### Add your Arcade MCP Gateway
+
+Run the following to add your Arcade Gateway as a remote HTTP server in Claude Code:
+
+```bash
+claude mcp add --transport http arcade "" \
+ --header "Authorization: Bearer " \
+ --header "Arcade-User-ID: "
+```
+
+### Verify the server was added
+
+```bash
+claude mcp get arcade
+claude mcp list
+```
+
+### Try it out
+
+Open Claude Code in your and ask it to use one of the from your gateway.
+
+Last updated on February 11, 2026
+
+[Claude Desktop](/en/get-started/mcp-clients/claude-desktop.md)
+[Visual Studio Code](/en/get-started/mcp-clients/visual-studio-code.md)
diff --git a/public/_markdown/en/get-started/mcp-clients/claude-desktop.md b/public/_markdown/en/get-started/mcp-clients/claude-desktop.md
index 24e13875f..7969d340f 100644
--- a/public/_markdown/en/get-started/mcp-clients/claude-desktop.md
+++ b/public/_markdown/en/get-started/mcp-clients/claude-desktop.md
@@ -62,7 +62,7 @@ In this configuration pane, you can configure which tools are available to Claud
You can now open a new chat within Claude Desktop. Ensure that your connector is enabled, and the ask the to use a !
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Cursor](/en/get-started/mcp-clients/cursor.md)
-[Visual Studio Code](/en/get-started/mcp-clients/visual-studio-code.md)
+[Claude Code](/en/get-started/mcp-clients/claude-code.md)
diff --git a/public/_markdown/en/get-started/mcp-clients/copilot-studio.md b/public/_markdown/en/get-started/mcp-clients/copilot-studio.md
index 18ef21e50..893cc252f 100644
--- a/public/_markdown/en/get-started/mcp-clients/copilot-studio.md
+++ b/public/_markdown/en/get-started/mcp-clients/copilot-studio.md
@@ -60,7 +60,7 @@ Arcade provides just-in-time authorization. When you use a that requires access

-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Visual Studio Code](/en/get-started/mcp-clients/visual-studio-code.md)
[Overview](/en/resources/integrations.md)
diff --git a/public/_markdown/en/get-started/mcp-clients/cursor.md b/public/_markdown/en/get-started/mcp-clients/cursor.md
index bda688671..fd2d56aea 100644
--- a/public/_markdown/en/get-started/mcp-clients/cursor.md
+++ b/public/_markdown/en/get-started/mcp-clients/cursor.md
@@ -63,7 +63,7 @@ Cursor will open the settings file, and you can add a new entry to the `mcpServ
2. Make sure you are in mode
3. Ask the to use a !
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/get-started/mcp-clients.md)
[Claude Desktop](/en/get-started/mcp-clients/claude-desktop.md)
diff --git a/public/_markdown/en/get-started/mcp-clients/visual-studio-code.md b/public/_markdown/en/get-started/mcp-clients/visual-studio-code.md
index 930e8fcb9..255c79090 100644
--- a/public/_markdown/en/get-started/mcp-clients/visual-studio-code.md
+++ b/public/_markdown/en/get-started/mcp-clients/visual-studio-code.md
@@ -62,7 +62,7 @@ Note: if you are using the Arcade Header auth mode for your Gateway, you will m
You will not see the authentication prompts when you start the Server in Visual Studio Code because the is passed directly.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
-[Claude Desktop](/en/get-started/mcp-clients/claude-desktop.md)
+[Claude Code](/en/get-started/mcp-clients/claude-code.md)
[Microsoft Copilot Studio](/en/get-started/mcp-clients/copilot-studio.md)
diff --git a/public/_markdown/en/get-started/quickstarts/call-tool-agent.md b/public/_markdown/en/get-started/quickstarts/call-tool-agent.md
index 2639c97a0..a6a0d661a 100644
--- a/public/_markdown/en/get-started/quickstarts/call-tool-agent.md
+++ b/public/_markdown/en/get-started/quickstarts/call-tool-agent.md
@@ -546,7 +546,7 @@ console.log(
console.log(respose_send_email.output?.value);
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Windows environment setup](/en/get-started/setup/windows-environment.md)
[Call tools in IDE/MCP clients](/en/get-started/quickstarts/call-tool-client.md)
diff --git a/public/_markdown/en/get-started/quickstarts/call-tool-client.md b/public/_markdown/en/get-started/quickstarts/call-tool-client.md
index 29ac4a1bc..b0db316a0 100644
--- a/public/_markdown/en/get-started/quickstarts/call-tool-client.md
+++ b/public/_markdown/en/get-started/quickstarts/call-tool-client.md
@@ -69,6 +69,7 @@ Select the client you want to use to read the instructions to connect to the :
[ Cursor AI-powered code editor with built-in MCP support](/guides/tool-calling/mcp-clients/cursor.md)
[ Claude Desktop Anthropic's desktop app for Claude with MCP integration](/guides/tool-calling/mcp-clients/claude-desktop.md)
+[ Claude Code Anthropic's coding agent CLI with MCP support](/guides/tool-calling/mcp-clients/claude-code.md)
[ Visual Studio Code Microsoft's code editor with MCP extensions](/guides/tool-calling/mcp-clients/visual-studio-code.md)
[ Microsoft Copilot Studio Microsoft's AI agent platform with MCP integration](/guides/tool-calling/mcp-clients/copilot-studio.md)
@@ -91,7 +92,7 @@ As you interact with the agent, it will call the tools from the Gateway. Your
- Build your own servers with [arcade-mcp](/get-started/quickstarts/mcp-server-quickstart.md)
.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Call tools in agents](/en/get-started/quickstarts/call-tool-agent.md)
[Build an MCP server for custom tools](/en/get-started/quickstarts/mcp-server-quickstart.md)
diff --git a/public/_markdown/en/get-started/quickstarts/mcp-server-quickstart.md b/public/_markdown/en/get-started/quickstarts/mcp-server-quickstart.md
index 7741af865..69855d548 100644
--- a/public/_markdown/en/get-started/quickstarts/mcp-server-quickstart.md
+++ b/public/_markdown/en/get-started/quickstarts/mcp-server-quickstart.md
@@ -216,7 +216,7 @@ Ensure you have set the environment variable in your terminal or `.env` file, an
- **Learn how to deploy your server**: [Deploy your MCP server](/guides/deployment-hosting/arcade-deploy.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Call tools in IDE/MCP clients](/en/get-started/quickstarts/call-tool-client.md)
[Overview](/en/get-started/agent-frameworks.md)
diff --git a/public/_markdown/en/get-started/setup/api-keys.md b/public/_markdown/en/get-started/setup/api-keys.md
index f263e2558..d9adddf54 100644
--- a/public/_markdown/en/get-started/setup/api-keys.md
+++ b/public/_markdown/en/get-started/setup/api-keys.md
@@ -74,7 +74,7 @@ Once you have your , you can:
- [Create custom tools](/guides/create-tools/tool-basics/build-mcp-server.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[About Arcade](/en/get-started/about-arcade.md)
[Connect Arcade docs to your IDE](/en/get-started/setup/connect-arcade-docs.md)
diff --git a/public/_markdown/en/get-started/setup/connect-arcade-docs.md b/public/_markdown/en/get-started/setup/connect-arcade-docs.md
index 7c17a395d..955c91beb 100644
--- a/public/_markdown/en/get-started/setup/connect-arcade-docs.md
+++ b/public/_markdown/en/get-started/setup/connect-arcade-docs.md
@@ -19,7 +19,7 @@ The LLMs.txt files are available at [`/llms.txt`](/llms.txt).
Learn more about the LLMs.txt file format [here](https://llmstxt.org/) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Get an API key](/en/get-started/setup/api-keys.md)
[Windows environment setup](/en/get-started/setup/windows-environment.md)
diff --git a/public/_markdown/en/get-started/setup/windows-environment.md b/public/_markdown/en/get-started/setup/windows-environment.md
index db1d65553..093be0bee 100644
--- a/public/_markdown/en/get-started/setup/windows-environment.md
+++ b/public/_markdown/en/get-started/setup/windows-environment.md
@@ -13,7 +13,7 @@ This page is coming soon. The team is working on comprehensive documentation for
In the meantime, if you need help setting up Arcade on Windows, please reach out on [Discord](https://discord.gg/GUZEMpEZ9p) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Connect Arcade docs to your IDE](/en/get-started/setup/connect-arcade-docs.md)
[Call tools in agents](/en/get-started/quickstarts/call-tool-agent.md)
diff --git a/public/_markdown/en/guides/create-tools/error-handling.md b/public/_markdown/en/guides/create-tools/error-handling.md
index 81d8efa85..5474afbda 100644
--- a/public/_markdown/en/guides/create-tools/error-handling.md
+++ b/public/_markdown/en/guides/create-tools/error-handling.md
@@ -16,7 +16,7 @@ Robust error handling is crucial for building reliable that provide great expe
- [Provide Useful Tool Errors](/guides/create-tools/error-handling/useful-tool-errors.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Types of Tools](/en/guides/create-tools/improve/types-of-tools.md)
[Retry Tools with Improved Prompt](/en/guides/create-tools/error-handling/retry-tools.md)
diff --git a/public/_markdown/en/guides/create-tools/error-handling/retry-tools.md b/public/_markdown/en/guides/create-tools/error-handling/retry-tools.md
index cf84bd101..997a96a2a 100644
--- a/public/_markdown/en/guides/create-tools/error-handling/retry-tools.md
+++ b/public/_markdown/en/guides/create-tools/error-handling/retry-tools.md
@@ -86,7 +86,7 @@ def send_dm_to_user(
return "DM sent successfully"
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/create-tools/error-handling.md)
[Provide Useful Tool Errors](/en/guides/create-tools/error-handling/useful-tool-errors.md)
diff --git a/public/_markdown/en/guides/create-tools/error-handling/useful-tool-errors.md b/public/_markdown/en/guides/create-tools/error-handling/useful-tool-errors.md
index 71383e421..85c3ed8c3 100644
--- a/public/_markdown/en/guides/create-tools/error-handling/useful-tool-errors.md
+++ b/public/_markdown/en/guides/create-tools/error-handling/useful-tool-errors.md
@@ -253,7 +253,7 @@ This will raise a `ToolOutputError` because the return type doesn’t match the
To learn more about how to handle tool errors in your , see the [Use Tools](/guides/tool-calling/error-handling.md) section.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Retry Tools with Improved Prompt](/en/guides/create-tools/error-handling/retry-tools.md)
[Migrate from toolkits to MCP servers](/en/guides/create-tools/migrate-toolkits.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools.md b/public/_markdown/en/guides/create-tools/evaluate-tools.md
index 451b103fa..8ef00b854 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools.md
@@ -20,7 +20,7 @@ Learn how to systematically test and improve your to ensure they work reliably
- [Comparative evaluations](/guides/create-tools/evaluate-tools/comparative-evaluations.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Organize your MCP server and tools](/en/guides/create-tools/tool-basics/organize-mcp-tools.md)
[Why evaluate tools?](/en/guides/create-tools/evaluate-tools/why-evaluate.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools/capture-mode.md b/public/_markdown/en/guides/create-tools/evaluate-tools/capture-mode.md
index b34752cc4..ad9ff4b67 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools/capture-mode.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools/capture-mode.md
@@ -412,7 +412,7 @@ suite = EvalSuite(
- [Create evaluation suites](/guides/create-tools/evaluate-tools/create-evaluation-suite.md)
with expectations
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Run evaluations](/en/guides/create-tools/evaluate-tools/run-evaluations.md)
[Comparative evaluations](/en/guides/create-tools/evaluate-tools/comparative-evaluations.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools/comparative-evaluations.md b/public/_markdown/en/guides/create-tools/evaluate-tools/comparative-evaluations.md
index 0b0ffaf67..5c7c96934 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools/comparative-evaluations.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools/comparative-evaluations.md
@@ -755,7 +755,7 @@ suite.add_tool_catalog(catalog_v2, track="Python v2")
- [Run evaluations](/guides/create-tools/evaluate-tools/run-evaluations.md)
with multiple models and tracks
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Capture mode](/en/guides/create-tools/evaluate-tools/capture-mode.md)
[Types of Tools](/en/guides/create-tools/improve/types-of-tools.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md b/public/_markdown/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md
index 465f41616..035bf6f56 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md
@@ -355,7 +355,7 @@ If you want stricter suites, increase thresholds (for example `fail_threshold=0.
- Compare sources with [comparative evaluations](/guides/create-tools/evaluate-tools/comparative-evaluations.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Why evaluate tools?](/en/guides/create-tools/evaluate-tools/why-evaluate.md)
[Run evaluations](/en/guides/create-tools/evaluate-tools/run-evaluations.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools/run-evaluations.md b/public/_markdown/en/guides/create-tools/evaluate-tools/run-evaluations.md
index 3f3fb8a17..26f92959f 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools/run-evaluations.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools/run-evaluations.md
@@ -535,7 +535,7 @@ Ensure your evaluation files:
- Learn about [comparative evaluations](/guides/create-tools/evaluate-tools/comparative-evaluations.md)
for comparing sources
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Create an evaluation suite](/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md)
[Capture mode](/en/guides/create-tools/evaluate-tools/capture-mode.md)
diff --git a/public/_markdown/en/guides/create-tools/evaluate-tools/why-evaluate.md b/public/_markdown/en/guides/create-tools/evaluate-tools/why-evaluate.md
index 3f5f879a4..229ab4d85 100644
--- a/public/_markdown/en/guides/create-tools/evaluate-tools/why-evaluate.md
+++ b/public/_markdown/en/guides/create-tools/evaluate-tools/why-evaluate.md
@@ -81,7 +81,7 @@ Test the same cases against different sources (tracks) with isolated registries
Save results in multiple formats (txt, md, html, json) for reporting and analysis. Specify output files with extensions or use no extension for all formats. [Learn more →](/guides/create-tools/evaluate-tools/run-evaluations.md#output-formats)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/create-tools/evaluate-tools.md)
[Create an evaluation suite](/en/guides/create-tools/evaluate-tools/create-evaluation-suite.md)
diff --git a/public/_markdown/en/guides/create-tools/improve/types-of-tools.md b/public/_markdown/en/guides/create-tools/improve/types-of-tools.md
index c4380da34..dd9ef0fc0 100644
--- a/public/_markdown/en/guides/create-tools/improve/types-of-tools.md
+++ b/public/_markdown/en/guides/create-tools/improve/types-of-tools.md
@@ -77,7 +77,7 @@ Although we redesign the tool name and argument descriptions to make them more s
When an Optimized tool covers your Agent’s needs, we recommend using it instead of an Unoptimized one. Use as a complement. Carefully engineer your prompts to ensure your can call them safely.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Comparative evaluations](/en/guides/create-tools/evaluate-tools/comparative-evaluations.md)
[Overview](/en/guides/create-tools/error-handling.md)
diff --git a/public/_markdown/en/guides/create-tools/migrate-toolkits.md b/public/_markdown/en/guides/create-tools/migrate-toolkits.md
index 726401181..9a3b493d6 100644
--- a/public/_markdown/en/guides/create-tools/migrate-toolkits.md
+++ b/public/_markdown/en/guides/create-tools/migrate-toolkits.md
@@ -304,7 +304,7 @@ After migrating your toolkit to an server:
- **Configure clients**: Connect your server to [MCP clients](/guides/create-tools/tool-basics/call-tools-mcp.md)
like Claude Desktop, Cursor, or VS Code
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Provide Useful Tool Errors](/en/guides/create-tools/error-handling/useful-tool-errors.md)
[Secure Auth in Production](/en/guides/user-facing-agents/secure-auth-production.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics.md b/public/_markdown/en/guides/create-tools/tool-basics.md
index 98d10502f..4d87d66ab 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics.md
@@ -25,7 +25,7 @@ Building tools with Arcade allows you to extend AI agents with custom capabiliti
- [Organize your MCP server and tools](/guides/create-tools/tool-basics/organize-mcp-tools.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Get formatted tool definitions](/en/guides/tool-calling/custom-apps/get-tool-definitions.md)
[Compare MCP server types](/en/guides/create-tools/tool-basics/compare-server-types.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/build-mcp-server.md b/public/_markdown/en/guides/create-tools/tool-basics/build-mcp-server.md
index ff78082aa..2fa9619a9 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/build-mcp-server.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/build-mcp-server.md
@@ -272,7 +272,7 @@ That’s it! Your server is running and connected to your AI assistant.
- **Deploy your server**: [Learn how to deploy your MCP server](/guides/deployment-hosting/arcade-deploy.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Compare MCP server types](/en/guides/create-tools/tool-basics/compare-server-types.md)
[Create a tool with auth](/en/guides/create-tools/tool-basics/create-tool-auth.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/call-tools-mcp.md b/public/_markdown/en/guides/create-tools/tool-basics/call-tools-mcp.md
index 8eca65f97..597f1c130 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/call-tools-mcp.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/call-tools-mcp.md
@@ -240,7 +240,7 @@ Then, your client’s configuration file should look like this:
For security reasons, Local HTTP servers do not currently support managed authorization and secrets. If you need to use authorization or secrets, you should use the stdio transport and configure the Arcade API key and secrets in your connection settings. If you intend to expose your HTTP to the public internet, please follow the [on-prem MCP server](/guides/deployment-hosting/on-prem.md) guide for secure remote deployment.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Access runtime data](/en/guides/create-tools/tool-basics/runtime-data-access.md)
[Organize your MCP server and tools](/en/guides/create-tools/tool-basics/organize-mcp-tools.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/compare-server-types.md b/public/_markdown/en/guides/create-tools/tool-basics/compare-server-types.md
index ca95e2e2a..dc45b5186 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/compare-server-types.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/compare-server-types.md
@@ -97,7 +97,7 @@ Arcade Cloud
✅
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/create-tools/tool-basics.md)
[Build an MCP Server to write custom tools](/en/guides/create-tools/tool-basics/build-mcp-server.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/create-tool-auth.md b/public/_markdown/en/guides/create-tools/tool-basics/create-tool-auth.md
index 1e483f5a1..bbe72f815 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/create-tool-auth.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/create-tool-auth.md
@@ -320,7 +320,7 @@ if __name__ == "__main__":
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Build an MCP Server to write custom tools](/en/guides/create-tools/tool-basics/build-mcp-server.md)
[Create a tool with secrets](/en/guides/create-tools/tool-basics/create-tool-secrets.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/create-tool-secrets.md b/public/_markdown/en/guides/create-tools/tool-basics/create-tool-secrets.md
index ff68857ec..496ab3aa7 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/create-tool-secrets.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/create-tool-secrets.md
@@ -249,7 +249,7 @@ For HTTP transport, view your server’s API docs at [http://127.0.0.1:8000/docs
For security reasons, Local HTTP servers do not currently support tool-level authorization and secrets. If you need to use tool-level authorization or secrets locally, you should use the stdio transport and configure the Arcade API key and secrets in your connection settings. Otherwise, if you intend to expose your HTTP to the public internet with \-level authorization and secrets, please follow the [deploying to the cloud with Arcade Deploy](/guides/deployment-hosting/arcade-deploy.md) guide or the [on-prem MCP server](/guides/deployment-hosting/on-prem.md) guide for secure remote deployment.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Create a tool with auth](/en/guides/create-tools/tool-basics/create-tool-auth.md)
[Access runtime data](/en/guides/create-tools/tool-basics/runtime-data-access.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/organize-mcp-tools.md b/public/_markdown/en/guides/create-tools/tool-basics/organize-mcp-tools.md
index d184fea48..4dac45c8e 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/organize-mcp-tools.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/organize-mcp-tools.md
@@ -198,7 +198,7 @@ uv run server.py http
For HTTP transport, view your server’s API docs at [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Call tools from MCP clients](/en/guides/create-tools/tool-basics/call-tools-mcp.md)
[Overview](/en/guides/create-tools/evaluate-tools.md)
diff --git a/public/_markdown/en/guides/create-tools/tool-basics/runtime-data-access.md b/public/_markdown/en/guides/create-tools/tool-basics/runtime-data-access.md
index 858dd54f4..b5b50e489 100644
--- a/public/_markdown/en/guides/create-tools/tool-basics/runtime-data-access.md
+++ b/public/_markdown/en/guides/create-tools/tool-basics/runtime-data-access.md
@@ -279,7 +279,7 @@ For HTTP transport, view your server’s API docs at [http://127.0.0.1:8000/docs
- [Build a custom tool with secrets](/guides/create-tools/tool-basics/create-tool-secrets.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Create a tool with secrets](/en/guides/create-tools/tool-basics/create-tool-secrets.md)
[Call tools from MCP clients](/en/guides/create-tools/tool-basics/call-tools-mcp.md)
diff --git a/public/_markdown/en/guides/deployment-hosting.md b/public/_markdown/en/guides/deployment-hosting.md
index c4dc18039..d56c0fd81 100644
--- a/public/_markdown/en/guides/deployment-hosting.md
+++ b/public/_markdown/en/guides/deployment-hosting.md
@@ -57,7 +57,7 @@ The requirements for deploying Arcade on-premise are:
- Cert Manager for securing Redis and Postgres and public ingress (see below)
- Nginx Ingress for accessing Arcade.dev from outside the cluster (see below)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Secure Auth in Production](/en/guides/user-facing-agents/secure-auth-production.md)
[Arcade Cloud](/en/guides/deployment-hosting/arcade-cloud.md)
diff --git a/public/_markdown/en/guides/deployment-hosting/arcade-cloud.md b/public/_markdown/en/guides/deployment-hosting/arcade-cloud.md
index 7654ac067..5f33784ce 100644
--- a/public/_markdown/en/guides/deployment-hosting/arcade-cloud.md
+++ b/public/_markdown/en/guides/deployment-hosting/arcade-cloud.md
@@ -179,7 +179,7 @@ If your organization has strict data residency requirements—for example, in fi
For compliance inquiries or data protection questions, [contact us](/resources/contact-us.md).
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/deployment-hosting.md)
[On-premises MCP servers](/en/guides/deployment-hosting/on-prem.md)
diff --git a/public/_markdown/en/guides/deployment-hosting/arcade-deploy.md b/public/_markdown/en/guides/deployment-hosting/arcade-deploy.md
index 5f06eb90d..52bbf2f4a 100644
--- a/public/_markdown/en/guides/deployment-hosting/arcade-deploy.md
+++ b/public/_markdown/en/guides/deployment-hosting/arcade-deploy.md
@@ -143,7 +143,7 @@ You can use any of the available [Arcade clients](/references.md) to call the to
Your Server is now deployed and managed by Arcade, and ready to be used in your MCP clients!
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Configure Arcade's engine](/en/guides/deployment-hosting/configure-engine.md)
[Overview](/en/guides/security.md)
diff --git a/public/_markdown/en/guides/deployment-hosting/configure-engine.md b/public/_markdown/en/guides/deployment-hosting/configure-engine.md
index e094e569f..72d9765b4 100644
--- a/public/_markdown/en/guides/deployment-hosting/configure-engine.md
+++ b/public/_markdown/en/guides/deployment-hosting/configure-engine.md
@@ -707,7 +707,7 @@ ZOOM_CLIENT_ID=""
ZOOM_CLIENT_SECRET=
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[On-premises MCP servers](/en/guides/deployment-hosting/on-prem.md)
[Arcade Deploy](/en/guides/deployment-hosting/arcade-deploy.md)
diff --git a/public/_markdown/en/guides/deployment-hosting/on-prem.md b/public/_markdown/en/guides/deployment-hosting/on-prem.md
index c294ffc82..c1c7d9b23 100644
--- a/public/_markdown/en/guides/deployment-hosting/on-prem.md
+++ b/public/_markdown/en/guides/deployment-hosting/on-prem.md
@@ -304,7 +304,7 @@ You can now test your Server by making requests using the Playground, or an MCP
- [Configure secrets](/guides/create-tools/tool-basics/create-tool-secrets.md)
for your Server
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Arcade Cloud](/en/guides/deployment-hosting/arcade-cloud.md)
[Configure Arcade's engine](/en/guides/deployment-hosting/configure-engine.md)
diff --git a/public/_markdown/en/guides/mcp-gateways.md b/public/_markdown/en/guides/mcp-gateways.md
index 9ba976f89..0a5c14f37 100644
--- a/public/_markdown/en/guides/mcp-gateways.md
+++ b/public/_markdown/en/guides/mcp-gateways.md
@@ -76,7 +76,7 @@ See [Create via Dashboard](/guides/mcp-gateways/create-via-dashboard.md) for det
- [Browse available integrations](/resources/integrations.md)
to see what you can add to your gateway
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Arcade Registry Early Access](/en/resources/registry-early-access.md)
[Add remote MCP servers](/en/guides/mcp-gateways/add-remote-servers.md)
diff --git a/public/_markdown/en/guides/mcp-gateways/add-remote-servers.md b/public/_markdown/en/guides/mcp-gateways/add-remote-servers.md
index d618374ef..d0d1cd8c8 100644
--- a/public/_markdown/en/guides/mcp-gateways/add-remote-servers.md
+++ b/public/_markdown/en/guides/mcp-gateways/add-remote-servers.md
@@ -124,7 +124,7 @@ Remote servers must be reachable from Arcade and must support the Streamable HTT
- [Connect to MCP clients](/get-started/mcp-clients.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[MCP Gateways](/en/guides/mcp-gateways.md)
[Create via Dashboard](/en/guides/mcp-gateways/create-via-dashboard.md)
diff --git a/public/_markdown/en/guides/mcp-gateways/create-via-ai.md b/public/_markdown/en/guides/mcp-gateways/create-via-ai.md
index 42ddda5ff..a6d9ea424 100644
--- a/public/_markdown/en/guides/mcp-gateways/create-via-ai.md
+++ b/public/_markdown/en/guides/mcp-gateways/create-via-ai.md
@@ -58,7 +58,7 @@ Follow the same process you used to add the Gateway Assistant - see [Connect to
The Gateway Assistant creates gateways that use **Arcade Auth** by default. This means you’ll authenticate with your Arcade to access the gateway. For production use cases with end who don’t have Arcade accounts, you can modify the gateway’s authentication settings in the [dashboard](https://api.arcade.dev/dashboard/mcp-gateways) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Create via Dashboard](/en/guides/mcp-gateways/create-via-dashboard.md)
[Overview](/en/guides/tool-calling.md)
diff --git a/public/_markdown/en/guides/mcp-gateways/create-via-dashboard.md b/public/_markdown/en/guides/mcp-gateways/create-via-dashboard.md
index 8fef364b6..d0f9e0e2d 100644
--- a/public/_markdown/en/guides/mcp-gateways/create-via-dashboard.md
+++ b/public/_markdown/en/guides/mcp-gateways/create-via-dashboard.md
@@ -43,7 +43,7 @@ Once you’ve created a gateway, you’ll need to add it to your chat client. Th
See [Connect to MCP clients](/get-started/mcp-clients.md) for setup instructions specific to your client.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Add remote MCP servers](/en/guides/mcp-gateways/add-remote-servers.md)
[Create via AI Assistant](/en/guides/mcp-gateways/create-via-ai.md)
diff --git a/public/_markdown/en/guides/security.md b/public/_markdown/en/guides/security.md
index 3b6d13dad..6d8602fad 100644
--- a/public/_markdown/en/guides/security.md
+++ b/public/_markdown/en/guides/security.md
@@ -17,7 +17,7 @@ Security is crucial when building that interact with external services, handle
- [Security research program](/guides/security/security-research-program.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Arcade Deploy](/en/guides/deployment-hosting/arcade-deploy.md)
[Securing Arcade MCP](/en/guides/security/securing-arcade-mcp.md)
diff --git a/public/_markdown/en/guides/security/secure-your-mcp-server.md b/public/_markdown/en/guides/security/secure-your-mcp-server.md
index 1775e4627..72d127cc4 100644
--- a/public/_markdown/en/guides/security/secure-your-mcp-server.md
+++ b/public/_markdown/en/guides/security/secure-your-mcp-server.md
@@ -452,7 +452,7 @@ AuthorizationServerEntry(
- **Use secrets securely**: [Create tools with secrets](/guides/create-tools/tool-basics/create-tool-secrets.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Securing Arcade MCP](/en/guides/security/securing-arcade-mcp.md)
[Security research program](/en/guides/security/security-research-program.md)
diff --git a/public/_markdown/en/guides/security/securing-arcade-mcp.md b/public/_markdown/en/guides/security/securing-arcade-mcp.md
index 1b0d6d973..bd4b30c2a 100644
--- a/public/_markdown/en/guides/security/securing-arcade-mcp.md
+++ b/public/_markdown/en/guides/security/securing-arcade-mcp.md
@@ -36,7 +36,7 @@ Learn more about adding front-door OAuth to your server [here](/guides/security
Coming soon, you will be able to secure your server using Client ID Metadata Documents (CIMD) for authorization. Learn more about how MCP integrates with OAuth [here](https://blog.modelcontextprotocol.io/posts/client_registration/) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/security.md)
[Secure your MCP server](/en/guides/security/secure-your-mcp-server.md)
diff --git a/public/_markdown/en/guides/security/security-research-program.md b/public/_markdown/en/guides/security/security-research-program.md
index 69ad8e954..2553dd243 100644
--- a/public/_markdown/en/guides/security/security-research-program.md
+++ b/public/_markdown/en/guides/security/security-research-program.md
@@ -52,7 +52,7 @@ While we’re a small team with limited resources, we appreciate the effort rese
For questions about this program, please contact [security@arcade.dev](mailto:security@arcade.dev).
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Secure your MCP server](/en/guides/security/secure-your-mcp-server.md)
[Server-Level vs Tool-Level Authorization](/en/learn/server-level-vs-tool-level-auth.md)
diff --git a/public/_markdown/en/guides/tool-calling.md b/public/_markdown/en/guides/tool-calling.md
index 0b037d96e..29c45ae67 100644
--- a/public/_markdown/en/guides/tool-calling.md
+++ b/public/_markdown/en/guides/tool-calling.md
@@ -72,7 +72,7 @@ This process shows the general outline of the Augmented Generation (TAG) proces
- Build your own [custom MCP Server](/guides/create-tools/tool-basics/build-mcp-server.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Create via AI Assistant](/en/guides/mcp-gateways/create-via-ai.md)
[Handling errors](/en/guides/tool-calling/error-handling.md)
diff --git a/public/_markdown/en/guides/tool-calling/call-third-party-apis.md b/public/_markdown/en/guides/tool-calling/call-third-party-apis.md
index 1c3fffcf8..a516b369c 100644
--- a/public/_markdown/en/guides/tool-calling/call-third-party-apis.md
+++ b/public/_markdown/en/guides/tool-calling/call-third-party-apis.md
@@ -207,7 +207,7 @@ Arcade handles the authorization challenges and tokens, simplifying the process
Integrate this authorization flow into your application, and explore how you can manage different [auth providers](/references/auth-providers.md) and scopes.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Handling errors](/en/guides/tool-calling/error-handling.md)
[Overview](/en/guides/tool-calling/custom-apps.md)
diff --git a/public/_markdown/en/guides/tool-calling/custom-apps.md b/public/_markdown/en/guides/tool-calling/custom-apps.md
index 8a958b85c..7c18fa795 100644
--- a/public/_markdown/en/guides/tool-calling/custom-apps.md
+++ b/public/_markdown/en/guides/tool-calling/custom-apps.md
@@ -18,7 +18,7 @@ Building custom applications with Arcade tools requires understanding how to man
- [Get formatted tool definitions](/guides/tool-calling/custom-apps/get-tool-definitions.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Call third-party APIs](/en/guides/tool-calling/call-third-party-apis.md)
[Authorize tool calling](/en/guides/tool-calling/custom-apps/auth-tool-calling.md)
diff --git a/public/_markdown/en/guides/tool-calling/custom-apps/auth-tool-calling.md b/public/_markdown/en/guides/tool-calling/custom-apps/auth-tool-calling.md
index a43bfd136..bab4edf9e 100644
--- a/public/_markdown/en/guides/tool-calling/custom-apps/auth-tool-calling.md
+++ b/public/_markdown/en/guides/tool-calling/custom-apps/auth-tool-calling.md
@@ -144,7 +144,7 @@ Arcade also allows you to [build your own tools](/guides/create-tools/tool-basic
Your can use the [service providers supported by Arcade](/references/auth-providers.md) or you can integrate with any [OAuth2-compatible service](/references/auth-providers/oauth2.md).
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/tool-calling/custom-apps.md)
[Check authorization status](/en/guides/tool-calling/custom-apps/check-auth-status.md)
diff --git a/public/_markdown/en/guides/tool-calling/custom-apps/check-auth-status.md b/public/_markdown/en/guides/tool-calling/custom-apps/check-auth-status.md
index 9c2dddef2..f6181b937 100644
--- a/public/_markdown/en/guides/tool-calling/custom-apps/check-auth-status.md
+++ b/public/_markdown/en/guides/tool-calling/custom-apps/check-auth-status.md
@@ -206,7 +206,7 @@ if (tool.requirements) {
- `true`: The secret exists for the
- `false`: The secret does not exist for the
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Authorize tool calling](/en/guides/tool-calling/custom-apps/auth-tool-calling.md)
[Get formatted tool definitions](/en/guides/tool-calling/custom-apps/get-tool-definitions.md)
diff --git a/public/_markdown/en/guides/tool-calling/custom-apps/get-tool-definitions.md b/public/_markdown/en/guides/tool-calling/custom-apps/get-tool-definitions.md
index 0369fcc72..024b66ba0 100644
--- a/public/_markdown/en/guides/tool-calling/custom-apps/get-tool-definitions.md
+++ b/public/_markdown/en/guides/tool-calling/custom-apps/get-tool-definitions.md
@@ -260,7 +260,7 @@ if ("authorization_required" in result && result.authorization_required) {
}
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Check authorization status](/en/guides/tool-calling/custom-apps/check-auth-status.md)
[Overview](/en/guides/create-tools/tool-basics.md)
diff --git a/public/_markdown/en/guides/tool-calling/error-handling.md b/public/_markdown/en/guides/tool-calling/error-handling.md
index 2b0e54d67..de0b6d817 100644
--- a/public/_markdown/en/guides/tool-calling/error-handling.md
+++ b/public/_markdown/en/guides/tool-calling/error-handling.md
@@ -199,7 +199,7 @@ As of now, Clients do not return structured error information, only an error me
To learn more about how to build with error handling, see the [Build Tools](/guides/create-tools/error-handling/useful-tool-errors.md) section.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/guides/tool-calling.md)
[Call third-party APIs](/en/guides/tool-calling/call-third-party-apis.md)
diff --git a/public/_markdown/en/guides/user-facing-agents/secure-auth-production.md b/public/_markdown/en/guides/user-facing-agents/secure-auth-production.md
index 8b9cd0511..4b0e1b43b 100644
--- a/public/_markdown/en/guides/user-facing-agents/secure-auth-production.md
+++ b/public/_markdown/en/guides/user-facing-agents/secure-auth-production.md
@@ -233,7 +233,7 @@ In the [Auth > Settings section](https://api.arcade.dev/dashboard/auth/settings)
Arcade’s default OAuth apps _only_ support the Arcade verifier. Authorization flows using Arcade’s default OAuth apps will use the Arcade user verifier even if you have a custom verifier route set up.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Migrate from toolkits to MCP servers](/en/guides/create-tools/migrate-toolkits.md)
[Overview](/en/guides/deployment-hosting.md)
diff --git a/public/_markdown/en/home.md b/public/_markdown/en/home.md
index a3e183317..4682da934 100644
--- a/public/_markdown/en/home.md
+++ b/public/_markdown/en/home.md
@@ -91,6 +91,6 @@ See Arcade in action with these example applications.
[FAQ](/resources/faq.md)
[Changelog](/references/changelog.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[About Arcade](/en/get-started/about-arcade.md)
diff --git a/public/_markdown/en/learn/server-level-vs-tool-level-auth.md b/public/_markdown/en/learn/server-level-vs-tool-level-auth.md
index d0b2b2170..2719c4158 100644
--- a/public/_markdown/en/learn/server-level-vs-tool-level-auth.md
+++ b/public/_markdown/en/learn/server-level-vs-tool-level-auth.md
@@ -257,7 +257,7 @@ if __name__ == "__main__":
- **stdio doesn’t need Resource Server auth** - Local connections are already secure
- **Choose based on transport and requirements** - Different scenarios need different combinations
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Security research program](/en/guides/security/security-research-program.md)
[Overview](/en/references.md)
diff --git a/public/_markdown/en/references.md b/public/_markdown/en/references.md
index 625abd6c6..fd40c3e7a 100644
--- a/public/_markdown/en/references.md
+++ b/public/_markdown/en/references.md
@@ -54,7 +54,7 @@ Install with:
Note: \-compatible versions of these clients are in development and will be documented soon.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Server-Level vs Tool-Level Authorization](/en/learn/server-level-vs-tool-level-auth.md)
[Changelog](/en/references/changelog.md)
diff --git a/public/_markdown/en/references/api.md b/public/_markdown/en/references/api.md
index 495919231..d5d130760 100644
--- a/public/_markdown/en/references/api.md
+++ b/public/_markdown/en/references/api.md
@@ -12,7 +12,7 @@ The use of this API is subject to our [Terms of Service](https://arcade.dev/term
Our OpenAPI 3.0 specification is [available here](https://api.arcade.dev/v1/swagger) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Changelog](/en/references/changelog.md)
[Overview](/en/references/mcp/python.md)
diff --git a/public/_markdown/en/references/arcade-cli.md b/public/_markdown/en/references/arcade-cli.md
index b27a364d4..45f421801 100644
--- a/public/_markdown/en/references/arcade-cli.md
+++ b/public/_markdown/en/references/arcade-cli.md
@@ -461,7 +461,7 @@ Usage: arcade secret [OPTIONS] COMMAND [ARGS]...
╰────────────────────────────────────────────────────────────────────────────────────╯
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Telemetry](/en/references/mcp/telemetry.md)
[CLI Cheat Sheet](/en/references/cli-cheat-sheet.md)
diff --git a/public/_markdown/en/references/auth-providers.md b/public/_markdown/en/references/auth-providers.md
index c727a97b8..319ea57c4 100644
--- a/public/_markdown/en/references/auth-providers.md
+++ b/public/_markdown/en/references/auth-providers.md
@@ -71,7 +71,7 @@ This is similar to the pattern used in the generic OAuth2 provider, but instead
See the docs about [Authoring Tools](/guides/create-tools/tool-basics/build-mcp-server.md) for more information on how to create and serve a Server.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[CLI Cheat Sheet](/en/references/cli-cheat-sheet.md)
[OAuth 2.0](/en/references/auth-providers/oauth2.md)
diff --git a/public/_markdown/en/references/auth-providers/airtable.md b/public/_markdown/en/references/auth-providers/airtable.md
index 712671cc0..e03f29480 100644
--- a/public/_markdown/en/references/auth-providers/airtable.md
+++ b/public/_markdown/en/references/auth-providers/airtable.md
@@ -271,7 +271,7 @@ Airtable supports various OAuth scopes that determine the level of access your a
For a complete list of available scopes, refer to the [Airtable Scopes documentation](https://airtable.com/developers/web/api/scopes) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[OAuth 2.0](/en/references/auth-providers/oauth2.md)
[Asana](/en/references/auth-providers/asana.md)
diff --git a/public/_markdown/en/references/auth-providers/asana.md b/public/_markdown/en/references/auth-providers/asana.md
index c9b242376..6cc5ec280 100644
--- a/public/_markdown/en/references/auth-providers/asana.md
+++ b/public/_markdown/en/references/auth-providers/asana.md
@@ -263,7 +263,7 @@ const response = await client.tools.execute({
console.log(response.output.value);
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Airtable](/en/references/auth-providers/airtable.md)
[Atlassian](/en/references/auth-providers/atlassian.md)
diff --git a/public/_markdown/en/references/auth-providers/atlassian.md b/public/_markdown/en/references/auth-providers/atlassian.md
index a10066502..d937a789a 100644
--- a/public/_markdown/en/references/auth-providers/atlassian.md
+++ b/public/_markdown/en/references/auth-providers/atlassian.md
@@ -164,7 +164,7 @@ async def list_projects(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Asana](/en/references/auth-providers/asana.md)
[Calendly](/en/references/auth-providers/calendly.md)
diff --git a/public/_markdown/en/references/auth-providers/calendly.md b/public/_markdown/en/references/auth-providers/calendly.md
index 756561138..a842c71f6 100644
--- a/public/_markdown/en/references/auth-providers/calendly.md
+++ b/public/_markdown/en/references/auth-providers/calendly.md
@@ -242,7 +242,7 @@ async def get_user_info(
For more details about Calendly’s authentication, refer to the [Calendly Authentication documentation](https://developer.calendly.com/how-to-guides/authentication) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Atlassian](/en/references/auth-providers/atlassian.md)
[ClickUp](/en/references/auth-providers/clickup.md)
diff --git a/public/_markdown/en/references/auth-providers/clickup.md b/public/_markdown/en/references/auth-providers/clickup.md
index 544080256..46941aa7e 100644
--- a/public/_markdown/en/references/auth-providers/clickup.md
+++ b/public/_markdown/en/references/auth-providers/clickup.md
@@ -157,7 +157,7 @@ async def get_my_workspaces(context: ToolContext) -> dict:
}
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Calendly](/en/references/auth-providers/calendly.md)
[Discord](/en/references/auth-providers/discord.md)
diff --git a/public/_markdown/en/references/auth-providers/discord.md b/public/_markdown/en/references/auth-providers/discord.md
index 3a3be0590..2328837f6 100644
--- a/public/_markdown/en/references/auth-providers/discord.md
+++ b/public/_markdown/en/references/auth-providers/discord.md
@@ -163,7 +163,7 @@ async def list_servers(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[ClickUp](/en/references/auth-providers/clickup.md)
[Dropbox](/en/references/auth-providers/dropbox.md)
diff --git a/public/_markdown/en/references/auth-providers/dropbox.md b/public/_markdown/en/references/auth-providers/dropbox.md
index 3e642e4ac..20fb322c8 100644
--- a/public/_markdown/en/references/auth-providers/dropbox.md
+++ b/public/_markdown/en/references/auth-providers/dropbox.md
@@ -166,7 +166,7 @@ async def list_files(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Discord](/en/references/auth-providers/discord.md)
[Figma](/en/references/auth-providers/figma.md)
diff --git a/public/_markdown/en/references/auth-providers/figma.md b/public/_markdown/en/references/auth-providers/figma.md
index 1a70971b0..2390b3486 100644
--- a/public/_markdown/en/references/auth-providers/figma.md
+++ b/public/_markdown/en/references/auth-providers/figma.md
@@ -283,7 +283,7 @@ async def get_figma_file(
For a complete list of available Figma OAuth scopes and their descriptions, refer to the [Figma OAuth Scopes documentation](https://developers.figma.com/docs/rest-api/scopes/) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Dropbox](/en/references/auth-providers/dropbox.md)
[GitHub](/en/references/auth-providers/github.md)
diff --git a/public/_markdown/en/references/auth-providers/github.md b/public/_markdown/en/references/auth-providers/github.md
index 75d70b915..bdb0d6c73 100644
--- a/public/_markdown/en/references/auth-providers/github.md
+++ b/public/_markdown/en/references/auth-providers/github.md
@@ -1242,7 +1242,7 @@ Use this checklist to ensure proper setup:
_💡 Remember: Always use GitHub Apps (not OAuth Apps), enable authorization during installation, and store credentials securely!_
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Figma](/en/references/auth-providers/figma.md)
[Google](/en/references/auth-providers/google.md)
diff --git a/public/_markdown/en/references/auth-providers/google.md b/public/_markdown/en/references/auth-providers/google.md
index 490977920..43e6703e5 100644
--- a/public/_markdown/en/references/auth-providers/google.md
+++ b/public/_markdown/en/references/auth-providers/google.md
@@ -290,7 +290,7 @@ async def list_emails(
return email_messages
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[GitHub](/en/references/auth-providers/github.md)
[Hubspot](/en/references/auth-providers/hubspot.md)
diff --git a/public/_markdown/en/references/auth-providers/hubspot.md b/public/_markdown/en/references/auth-providers/hubspot.md
index 9eec47e0c..ac5bca192 100644
--- a/public/_markdown/en/references/auth-providers/hubspot.md
+++ b/public/_markdown/en/references/auth-providers/hubspot.md
@@ -267,7 +267,7 @@ const response = await client.tools.execute({
console.log(response.output.value);
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Google](/en/references/auth-providers/google.md)
[Linear](/en/references/auth-providers/linear.md)
diff --git a/public/_markdown/en/references/auth-providers/linear.md b/public/_markdown/en/references/auth-providers/linear.md
index 7778048b7..8e8ffcfa4 100644
--- a/public/_markdown/en/references/auth-providers/linear.md
+++ b/public/_markdown/en/references/auth-providers/linear.md
@@ -274,7 +274,7 @@ async def get_teams(
return teams
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Hubspot](/en/references/auth-providers/hubspot.md)
[LinkedIn](/en/references/auth-providers/linkedin.md)
diff --git a/public/_markdown/en/references/auth-providers/linkedin.md b/public/_markdown/en/references/auth-providers/linkedin.md
index 6c94641bc..39e86a687 100644
--- a/public/_markdown/en/references/auth-providers/linkedin.md
+++ b/public/_markdown/en/references/auth-providers/linkedin.md
@@ -264,7 +264,7 @@ async def create_text_post(
return f"https://www.linkedin.com/feed/update/{share_id}/"
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Linear](/en/references/auth-providers/linear.md)
[Mailchimp](/en/references/auth-providers/mailchimp.md)
diff --git a/public/_markdown/en/references/auth-providers/mailchimp.md b/public/_markdown/en/references/auth-providers/mailchimp.md
index 5262d880d..856200f5b 100644
--- a/public/_markdown/en/references/auth-providers/mailchimp.md
+++ b/public/_markdown/en/references/auth-providers/mailchimp.md
@@ -292,7 +292,7 @@ async def get_mailchimp_lists(
For more details about Mailchimp’s authentication, refer to the [Mailchimp OAuth 2.0 documentation](https://mailchimp.com/developer/marketing/guides/access-user-data-oauth-2/) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[LinkedIn](/en/references/auth-providers/linkedin.md)
[Microsoft](/en/references/auth-providers/microsoft.md)
diff --git a/public/_markdown/en/references/auth-providers/microsoft.md b/public/_markdown/en/references/auth-providers/microsoft.md
index 25f852d1a..30e8b38b3 100644
--- a/public/_markdown/en/references/auth-providers/microsoft.md
+++ b/public/_markdown/en/references/auth-providers/microsoft.md
@@ -204,7 +204,7 @@ async def get_file_contents(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Mailchimp](/en/references/auth-providers/mailchimp.md)
[Miro](/en/references/auth-providers/miro.md)
diff --git a/public/_markdown/en/references/auth-providers/miro.md b/public/_markdown/en/references/auth-providers/miro.md
index 58320262c..f1dbf6d67 100644
--- a/public/_markdown/en/references/auth-providers/miro.md
+++ b/public/_markdown/en/references/auth-providers/miro.md
@@ -266,7 +266,7 @@ Miro supports various OAuth scopes that determine the level of access your appli
For a complete list of available scopes, refer to the [Miro Scopes documentation](https://developers.miro.com/docs/scopes) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Microsoft](/en/references/auth-providers/microsoft.md)
[Notion](/en/references/auth-providers/notion.md)
diff --git a/public/_markdown/en/references/auth-providers/notion.md b/public/_markdown/en/references/auth-providers/notion.md
index 2b8d85091..0337e099f 100644
--- a/public/_markdown/en/references/auth-providers/notion.md
+++ b/public/_markdown/en/references/auth-providers/notion.md
@@ -161,7 +161,7 @@ async def search_page_by_title(
return dict(response.json())
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Miro](/en/references/auth-providers/miro.md)
[PagerDuty](/en/references/auth-providers/pagerduty.md)
diff --git a/public/_markdown/en/references/auth-providers/oauth2.md b/public/_markdown/en/references/auth-providers/oauth2.md
index fee8f99a5..a949e6464 100644
--- a/public/_markdown/en/references/auth-providers/oauth2.md
+++ b/public/_markdown/en/references/auth-providers/oauth2.md
@@ -483,7 +483,7 @@ async def reticulate_splines(
user_id = context.authorization.user_info.get("sub")
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/references/auth-providers.md)
[Airtable](/en/references/auth-providers/airtable.md)
diff --git a/public/_markdown/en/references/auth-providers/pagerduty.md b/public/_markdown/en/references/auth-providers/pagerduty.md
index 2e5985163..490b2dff9 100644
--- a/public/_markdown/en/references/auth-providers/pagerduty.md
+++ b/public/_markdown/en/references/auth-providers/pagerduty.md
@@ -258,7 +258,7 @@ PagerDuty Classic apps use two permission levels:
For more details about PagerDuty’s OAuth permissions, refer to the [PagerDuty OAuth functionality docs](https://developer.pagerduty.com/docs/oauth-functionality#scopes) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Notion](/en/references/auth-providers/notion.md)
[Reddit](/en/references/auth-providers/reddit.md)
diff --git a/public/_markdown/en/references/auth-providers/reddit.md b/public/_markdown/en/references/auth-providers/reddit.md
index 627ee9bee..da0ec3736 100644
--- a/public/_markdown/en/references/auth-providers/reddit.md
+++ b/public/_markdown/en/references/auth-providers/reddit.md
@@ -164,7 +164,7 @@ async def get_user_info(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[PagerDuty](/en/references/auth-providers/pagerduty.md)
[Salesforce](/en/references/auth-providers/salesforce.md)
diff --git a/public/_markdown/en/references/auth-providers/salesforce.md b/public/_markdown/en/references/auth-providers/salesforce.md
index de94ba830..69e83c6c9 100644
--- a/public/_markdown/en/references/auth-providers/salesforce.md
+++ b/public/_markdown/en/references/auth-providers/salesforce.md
@@ -380,7 +380,7 @@ The code implemented in the Arcade Salesforce is the best guide for you to unde
PLAINTEXT
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Reddit](/en/references/auth-providers/reddit.md)
[Slack](/en/references/auth-providers/slack.md)
diff --git a/public/_markdown/en/references/auth-providers/slack.md b/public/_markdown/en/references/auth-providers/slack.md
index 499be92ac..fafad2222 100644
--- a/public/_markdown/en/references/auth-providers/slack.md
+++ b/public/_markdown/en/references/auth-providers/slack.md
@@ -217,7 +217,7 @@ def send_dm_to_user(
slackClient.chat_postMessage(channel=dm_channel_id, text=message)
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Salesforce](/en/references/auth-providers/salesforce.md)
[Spotify](/en/references/auth-providers/spotify.md)
diff --git a/public/_markdown/en/references/auth-providers/spotify.md b/public/_markdown/en/references/auth-providers/spotify.md
index 8b740e7de..840e571d0 100644
--- a/public/_markdown/en/references/auth-providers/spotify.md
+++ b/public/_markdown/en/references/auth-providers/spotify.md
@@ -168,7 +168,7 @@ async def get_playback_state(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Slack](/en/references/auth-providers/slack.md)
[Square](/en/references/auth-providers/square.md)
diff --git a/public/_markdown/en/references/auth-providers/square.md b/public/_markdown/en/references/auth-providers/square.md
index 378e6ad72..1926397f9 100644
--- a/public/_markdown/en/references/auth-providers/square.md
+++ b/public/_markdown/en/references/auth-providers/square.md
@@ -272,7 +272,7 @@ Square supports various OAuth scopes that determine the level of access your app
For a complete list of available scopes, refer to the [Square OAuth Permissions documentation](https://developer.squareup.com/docs/oauth-api/square-permissions) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Spotify](/en/references/auth-providers/spotify.md)
[TickTick](/en/references/auth-providers/ticktick.md)
diff --git a/public/_markdown/en/references/auth-providers/ticktick.md b/public/_markdown/en/references/auth-providers/ticktick.md
index a8b1e650c..d61691e14 100644
--- a/public/_markdown/en/references/auth-providers/ticktick.md
+++ b/public/_markdown/en/references/auth-providers/ticktick.md
@@ -293,7 +293,7 @@ Authorization: Bearer {access_token}
For detailed API documentation, including request/response formats and examples, visit the [TickTick API Reference](https://developer.ticktick.com/docs) .
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Square](/en/references/auth-providers/square.md)
[Twitch](/en/references/auth-providers/twitch.md)
diff --git a/public/_markdown/en/references/auth-providers/twitch.md b/public/_markdown/en/references/auth-providers/twitch.md
index f58b3ef75..45452b82e 100644
--- a/public/_markdown/en/references/auth-providers/twitch.md
+++ b/public/_markdown/en/references/auth-providers/twitch.md
@@ -191,7 +191,7 @@ async def create_poll(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[TickTick](/en/references/auth-providers/ticktick.md)
[X](/en/references/auth-providers/x.md)
diff --git a/public/_markdown/en/references/auth-providers/x.md b/public/_markdown/en/references/auth-providers/x.md
index 464c5bd46..064fdf6e2 100644
--- a/public/_markdown/en/references/auth-providers/x.md
+++ b/public/_markdown/en/references/auth-providers/x.md
@@ -175,7 +175,7 @@ async def post_tweet(
return f"Tweet with id {tweet_id} posted successfully. URL: https://x.com/x/status/{tweet_id}"
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Twitch](/en/references/auth-providers/twitch.md)
[Zendesk](/en/references/auth-providers/zendesk.md)
diff --git a/public/_markdown/en/references/auth-providers/zendesk.md b/public/_markdown/en/references/auth-providers/zendesk.md
index fd22975d2..e05059e40 100644
--- a/public/_markdown/en/references/auth-providers/zendesk.md
+++ b/public/_markdown/en/references/auth-providers/zendesk.md
@@ -209,7 +209,7 @@ async def get_tickets(
return {"tickets": data}
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[X](/en/references/auth-providers/x.md)
[Zoho](/en/references/auth-providers/zoho.md)
diff --git a/public/_markdown/en/references/auth-providers/zoho.md b/public/_markdown/en/references/auth-providers/zoho.md
index f135f80a8..647b57aa9 100644
--- a/public/_markdown/en/references/auth-providers/zoho.md
+++ b/public/_markdown/en/references/auth-providers/zoho.md
@@ -355,7 +355,7 @@ China
Make sure to configure your OAuth provider and API calls to use the correct domain for your ’s data center.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Zendesk](/en/references/auth-providers/zendesk.md)
[Zoom](/en/references/auth-providers/zoom.md)
diff --git a/public/_markdown/en/references/auth-providers/zoom.md b/public/_markdown/en/references/auth-providers/zoom.md
index 2f51cad18..837054252 100644
--- a/public/_markdown/en/references/auth-providers/zoom.md
+++ b/public/_markdown/en/references/auth-providers/zoom.md
@@ -166,6 +166,6 @@ async def list_upcoming_meetings(
return response.json()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Zoho](/en/references/auth-providers/zoho.md)
diff --git a/public/_markdown/en/references/changelog.md b/public/_markdown/en/references/changelog.md
index 3c1d1df05..9d3e1ec8e 100644
--- a/public/_markdown/en/references/changelog.md
+++ b/public/_markdown/en/references/changelog.md
@@ -662,7 +662,7 @@ Self-hosed Arcade developers cannot be grandfathered into the old (insecure) beh
- `[feature - 🚀]` Launched status.arcade.dev for monitoring platform status ([link](https://status.arcade.dev)
)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/references.md)
[API](/en/references/api.md)
diff --git a/public/_markdown/en/references/cli-cheat-sheet.md b/public/_markdown/en/references/cli-cheat-sheet.md
index 2056ee2d7..d3563326a 100644
--- a/public/_markdown/en/references/cli-cheat-sheet.md
+++ b/public/_markdown/en/references/cli-cheat-sheet.md
@@ -771,7 +771,7 @@ Standard development cycle for building servers:
9. **`arcade deploy`** — Deploy to cloud (requires `server.py` entrypoint)
10. **`arcade server logs -f`** — Monitor logs
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Arcade CLI](/en/references/arcade-cli.md)
[Overview](/en/references/auth-providers.md)
diff --git a/public/_markdown/en/references/mcp/python.md b/public/_markdown/en/references/mcp/python.md
index 3d6c44bd8..7f40027fd 100644
--- a/public/_markdown/en/references/mcp/python.md
+++ b/public/_markdown/en/references/mcp/python.md
@@ -239,7 +239,7 @@ if __name__ == "__main__":
python server.py
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[API](/en/references/api.md)
[Transports](/en/references/mcp/python/transports.md)
diff --git a/public/_markdown/en/references/mcp/python/errors.md b/public/_markdown/en/references/mcp/python/errors.md
index 7dd4540d5..09bf10b1a 100644
--- a/public/_markdown/en/references/mcp/python/errors.md
+++ b/public/_markdown/en/references/mcp/python/errors.md
@@ -137,7 +137,7 @@ async def call_tool_safely(call):
raise MCPError(f"Tool failed: {e}")
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Types](/en/references/mcp/python/types.md)
[Settings](/en/references/mcp/python/settings.md)
diff --git a/public/_markdown/en/references/mcp/python/middleware.md b/public/_markdown/en/references/mcp/python/middleware.md
index ba1799f6b..85c0aa68a 100644
--- a/public/_markdown/en/references/mcp/python/middleware.md
+++ b/public/_markdown/en/references/mcp/python/middleware.md
@@ -274,7 +274,7 @@ middleware = compose_middleware([
server = MCPServer(catalog=ToolCatalog(), middleware=[middleware])
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Server](/en/references/mcp/python/server.md)
[Types](/en/references/mcp/python/types.md)
diff --git a/public/_markdown/en/references/mcp/python/server.md b/public/_markdown/en/references/mcp/python/server.md
index 0bd252a8a..9e0a78f56 100644
--- a/public/_markdown/en/references/mcp/python/server.md
+++ b/public/_markdown/en/references/mcp/python/server.md
@@ -289,7 +289,7 @@ async def run_http():
asyncio.run(run_http())
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Transports](/en/references/mcp/python/transports.md)
[Middleware](/en/references/mcp/python/middleware.md)
diff --git a/public/_markdown/en/references/mcp/python/settings.md b/public/_markdown/en/references/mcp/python/settings.md
index 26de41cf2..49c651702 100644
--- a/public/_markdown/en/references/mcp/python/settings.md
+++ b/public/_markdown/en/references/mcp/python/settings.md
@@ -156,7 +156,7 @@ from arcade_mcp_server.settings import MCPSettings
settings = MCPSettings()
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Errors](/en/references/mcp/python/errors.md)
[Telemetry](/en/references/mcp/telemetry.md)
diff --git a/public/_markdown/en/references/mcp/python/transports.md b/public/_markdown/en/references/mcp/python/transports.md
index b822ac08d..e591a6224 100644
--- a/public/_markdown/en/references/mcp/python/transports.md
+++ b/public/_markdown/en/references/mcp/python/transports.md
@@ -227,7 +227,7 @@ async def shutdown_handler():
print("Server shutting down...")
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/references/mcp/python.md)
[Server](/en/references/mcp/python/server.md)
diff --git a/public/_markdown/en/references/mcp/python/types.md b/public/_markdown/en/references/mcp/python/types.md
index 61405e65a..56e65cc03 100644
--- a/public/_markdown/en/references/mcp/python/types.md
+++ b/public/_markdown/en/references/mcp/python/types.md
@@ -61,7 +61,7 @@ result = CallToolResult(
)
```
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Middleware](/en/references/mcp/python/middleware.md)
[Errors](/en/references/mcp/python/errors.md)
diff --git a/public/_markdown/en/references/mcp/telemetry.md b/public/_markdown/en/references/mcp/telemetry.md
index 11bc96d53..bbb85454e 100644
--- a/public/_markdown/en/references/mcp/telemetry.md
+++ b/public/_markdown/en/references/mcp/telemetry.md
@@ -60,7 +60,7 @@ export ARCADE_USAGE_TRACKING=0
Or to permanently opt out, you can set this environment variable in your shell’s configuration file (for example, `~/.zshrc` for zsh or `~/.bashrc` for bash).
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Settings](/en/references/mcp/python/settings.md)
[Arcade CLI](/en/references/arcade-cli.md)
diff --git a/public/_markdown/en/resources/contact-us.md b/public/_markdown/en/resources/contact-us.md
index ff90b755f..fb5f460b2 100644
--- a/public/_markdown/en/resources/contact-us.md
+++ b/public/_markdown/en/resources/contact-us.md
@@ -18,7 +18,7 @@ Contact
[System Status Check the current status of Arcade's services, view incident history, and subscribe to updates. Learn more](https://status.arcade.dev)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[FAQ](/en/resources/faq.md)
[Arcade Registry Early Access](/en/resources/registry-early-access.md)
diff --git a/public/_markdown/en/resources/examples.md b/public/_markdown/en/resources/examples.md
index 1c6f2b87b..7ddab8e14 100644
--- a/public/_markdown/en/resources/examples.md
+++ b/public/_markdown/en/resources/examples.md
@@ -57,7 +57,7 @@ Built something with Arcade? The team would love to feature it! Submit your app
If you have questions about submitting your app, feel free to [contact the team](/resources/contact-us.md) or open an issue in the docs repository.
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Contribute a Server](/en/resources/integrations/contribute-a-server.md)
[Tools](/en/resources/tools.md)
diff --git a/public/_markdown/en/resources/faq.md b/public/_markdown/en/resources/faq.md
index a0b40d60c..3de0fec3e 100644
--- a/public/_markdown/en/resources/faq.md
+++ b/public/_markdown/en/resources/faq.md
@@ -151,7 +151,7 @@ Please go to the discussions page on GitHub. Someone else may have asked somethi
[Get Answers on GitHub](https://github.com/ArcadeAI/arcade-ai/discussions)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Glossary](/en/resources/glossary.md)
[Contact](/en/resources/contact-us.md)
diff --git a/public/_markdown/en/resources/glossary.md b/public/_markdown/en/resources/glossary.md
index a4830c8d7..5195705af 100644
--- a/public/_markdown/en/resources/glossary.md
+++ b/public/_markdown/en/resources/glossary.md
@@ -201,7 +201,7 @@ Evaluations are a way to test the LLMs’ ability to select and call your tools.
_Learn more about evaluations [here](/guides/create-tools/evaluate-tools/why-evaluate.md)
._
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Tools](/en/resources/tools.md)
[FAQ](/en/resources/faq.md)
diff --git a/public/_markdown/en/resources/integrations.md b/public/_markdown/en/resources/integrations.md
index 4406b526d..dd54668cc 100644
--- a/public/_markdown/en/resources/integrations.md
+++ b/public/_markdown/en/resources/integrations.md
@@ -128,7 +128,7 @@ Don't see what you need? Use Arcade's SDK to integrate with any service or API.
[Jira Auth Provider](/en/resources/integrations/productivity/jira.md)
[Twitch Auth Provider](/en/resources/integrations/entertainment/twitch.md)
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Microsoft Copilot Studio](/en/get-started/mcp-clients/copilot-studio.md)
[Contribute a Server](/en/resources/integrations/contribute-a-server.md)
diff --git a/public/_markdown/en/resources/integrations/contribute-a-server.md b/public/_markdown/en/resources/integrations/contribute-a-server.md
index 78cbb4ea1..923040a7a 100644
--- a/public/_markdown/en/resources/integrations/contribute-a-server.md
+++ b/public/_markdown/en/resources/integrations/contribute-a-server.md
@@ -27,7 +27,7 @@ After submitting your pull request:
- Address any feedback from the reviewers.
- Once approved, your MCP Server will be added to the Arcade documentation for other developers to discover and use!
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Overview](/en/resources/integrations.md)
[Examples](/en/resources/examples.md)
diff --git a/public/_markdown/en/resources/registry-early-access.md b/public/_markdown/en/resources/registry-early-access.md
index 6f5405d8b..41b931672 100644
--- a/public/_markdown/en/resources/registry-early-access.md
+++ b/public/_markdown/en/resources/registry-early-access.md
@@ -20,7 +20,7 @@ We are seeking beta testers who are interested in building, maintaining, and sha
Loading...
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Contact](/en/resources/contact-us.md)
[MCP Gateways](/en/guides/mcp-gateways.md)
diff --git a/public/_markdown/en/resources/tools.md b/public/_markdown/en/resources/tools.md
index 9d1ef1596..3fbb27bd0 100644
--- a/public/_markdown/en/resources/tools.md
+++ b/public/_markdown/en/resources/tools.md
@@ -40,7 +40,7 @@ Share your tools with the Arcade community and help expand our ecosystem. Submit
3. **Customize**: Create your own when you need specific functionality
4. **Share**: Contribute back to the community by adding your to our catalog
-Last updated on February 10, 2026
+Last updated on February 11, 2026
[Examples](/en/resources/examples.md)
[Glossary](/en/resources/glossary.md)
diff --git a/public/llms.txt b/public/llms.txt
index 8145d4091..81c2b2adb 100644
--- a/public/llms.txt
+++ b/public/llms.txt
@@ -1,4 +1,4 @@
-
+
# Arcade
@@ -237,6 +237,7 @@ Arcade delivers three core capabilities: Deploy agents even your security team w
- [Twitch auth provider](https://docs.arcade.dev/en/resources/integrations/entertainment/twitch.md): The Twitch auth provider documentation page guides users in creating a custom authentication provider to access the Twitch API using their own OAuth 2.0 credentials. It outlines the steps to configure Twitch authentication within the Arcade platform, including creating a Twitch application and integrating it
- [Types of Tools](https://docs.arcade.dev/en/guides/create-tools/improve/types-of-tools.md): This documentation page explains the two types of tools offered by Arcade: Optimized tools and Unoptimized tools. It highlights the differences in design and functionality, emphasizing that Optimized tools are tailored for AI-powered chat interfaces to improve performance, while Unoptimized tools provide more
- [Understanding `Context` and tools](https://docs.arcade.dev/en/guides/create-tools/tool-basics/runtime-data-access.md): This documentation page explains the `Context` class used in Arcade tools, detailing how to access runtime capabilities and tool-specific data securely. Users will learn how to utilize the `Context` object to retrieve OAuth tokens, secrets, user information, and to log
+- [Use Arcade in Claude Code](https://docs.arcade.dev/en/get-started/mcp-clients/claude-code.md): This documentation page guides users on how to connect Claude Code to an Arcade MCP Gateway using the Arcade Headers authentication method. It outlines the prerequisites for setting up the connection, including creating an Arcade account and obtaining an API key, as well as providing instructions for
- [Use Arcade in Claude Desktop](https://docs.arcade.dev/en/get-started/mcp-clients/claude-desktop.md): This documentation page provides a step-by-step guide for users to connect Claude Desktop to an Arcade MCP Gateway, enabling them to utilize custom connectors. It outlines the prerequisites for setup, including creating an Arcade account and obtaining an API key, as well as detailed
- [Use Arcade in Cursor](https://docs.arcade.dev/en/get-started/mcp-clients/cursor.md): This documentation page provides a step-by-step guide for connecting Cursor to an Arcade MCP Gateway, enabling users to utilize Arcade tools within the Cursor environment. It outlines the prerequisites for setup, including creating an Arcade account and obtaining an API key, as well as
- [Use Arcade in Microsoft Copilot Studio](https://docs.arcade.dev/en/get-started/mcp-clients/copilot-studio.md): This documentation page guides users on how to connect Microsoft Copilot Studio to an Arcade MCP Gateway, enabling the integration of Arcade tools into their agents. It outlines the prerequisites, step-by-step instructions for creating or opening an agent, adding an MCP tool,