Skip to content

Commit 67c1e41

Browse files
nearestnaborsclaude
andcommitted
Fix remaining /home/ links throughout documentation
- Updated 119 files with remaining /home/ references - Fixed links with anchors and query parameters - Ensured all internal links point to new IA structure - Comprehensive mapping of all /home/ paths to new locations 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5ab7b91 commit 67c1e41

File tree

106 files changed

+230
-230
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+230
-230
lines changed

app/en/get-started/quickstarts/call-tool-agent/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ console.log(respose_send_email.output?.value);
376376

377377
## Next Steps
378378

379-
In this simple example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/home/langchain/use-arcade-tools) section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server).
379+
In this simple example, we call the tool methods directly. In your real applications and agents, you'll likely be letting the LLM decide which tools to call. Learn more about using Arcade with Frameworks in the [Frameworks](/guides/agent-frameworks/langchain/python section, or [how to build your own tools](/guides/create-tools/tool-basics/build-mcp-server).
380380

381381
## Example Code
382382

app/en/get-started/quickstarts/call-tool-client/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ As you interact with the agent, it will call the tools from the MCP Gateway. You
203203

204204
## Next Steps
205205

206-
- Learn more about [MCP Gateways](/home/mcp-gateways).
206+
- Learn more about [MCP Gateways](/guides/create-tools/mcp-gateways.
207207
- Learn how to use MCP Gateways with:
208208
- [Cursor](/guides/tool-calling/mcp-client/visual-studio-code)
209209
- [Visual Studio Code](/guides/tool-calling/mcp-client/visual-studio-code)

app/en/get-started/quickstarts/mcp-server-quickstart/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ For HTTP transport, view your server's API docs at [http://127.0.0.1:8000/docs](
181181
to expose your HTTP MCP server to the public internet with tool-level
182182
authorization and secrets, please follow the [deploying to the cloud with
183183
Arcade Deploy](/guides/deployment-hosting/arcade-deploy) guide or the [on-prem MCP
184-
server](/home/deployment/on-prem-mcp) guide for secure remote deployment.
184+
server](/guides/deployment-hosting/on-prem guide for secure remote deployment.
185185
</Callout>
186186

187187
</Tabs.Tab>

app/en/guides/agent-frameworks/langchain/use-arcade-tools/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ print(manager.tools)
7777
```
7878
</Tabs.Tab>
7979
<Tabs.Tab>
80-
Arcade offers methods to convert tools into Zod schemas, which is essential since LangGraph defines tools using Zod. The `toZod` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with LangGraph. Learn more about Arcade's Zod integration options [here](/home/use-tools/get-tool-definitions#get-zod-tool-definitions).
80+
Arcade offers methods to convert tools into Zod schemas, which is essential since LangGraph defines tools using Zod. The `toZod` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with LangGraph. Learn more about Arcade's Zod integration options [here](/guides/tool-calling/get-tool-definitions#get-zod-tool-definitions).
8181
```javascript
8282
import { Arcade } from "@arcadeai/arcadejs";
8383
import { executeOrAuthorizeZodTool, toZod } from "@arcadeai/arcadejs/lib";

app/en/guides/agent-frameworks/mastra/overview/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ The integration works through three key mechanisms:
2929

3030
### Next Steps
3131

32-
- Learn how to [use Arcade tools](/home/mastra/use-arcade-tools) in a Mastra agent
33-
- Implement [user authentication handling](/home/mastra/user-auth-interrupts) for tools in multi-user applications
32+
- Learn how to [use Arcade tools](/resources/mastra/use-arcade-tools) in a Mastra agent
33+
- Implement [user authentication handling](/resources/mastra/user-auth-interrupts) for tools in multi-user applications

app/en/guides/agent-frameworks/mastra/use-arcade-tools/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ process.env.ANTHROPIC_API_KEY = "your_anthropic_api_key"; // or another supporte
7272

7373
### Convert Arcade tools to Mastra tools
7474

75-
Arcade offers methods to convert tools into Zod schemas, which is essential since Mastra defines tools using Zod. The `toZodToolSet` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with Mastra. Learn more about Arcade's Zod integration options [here](/home/use-tools/get-tool-definitions#get-zod-tool-definitions).
75+
Arcade offers methods to convert tools into Zod schemas, which is essential since Mastra defines tools using Zod. The `toZodToolSet` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with Mastra. Learn more about Arcade's Zod integration options [here](/guides/tool-calling/get-tool-definitions#get-zod-tool-definitions).
7676

7777
```ts
7878
import { Arcade } from "@arcadeai/arcadejs";
@@ -158,4 +158,4 @@ for await (const chunk of stream.textStream) {
158158

159159
</Steps>
160160

161-
<Callout type="warning" title="Initial Tool Authorization">When running your agent for the first time with tools that require user consent (like Google or Github), the agent will return an authorization reponse (e.g., `{ authorization_required: true, url: '...', message: '...' }`). Your agent's instructions should guide it to present this URL to the user. After the user visits this URL and grants permissions, the tool can be used successfully. See the [Managing user authorization](/home/mastra/user-auth-interrupts) guide for more details on handling authentication flows.</Callout>
161+
<Callout type="warning" title="Initial Tool Authorization">When running your agent for the first time with tools that require user consent (like Google or Github), the agent will return an authorization reponse (e.g., `{ authorization_required: true, url: '...', message: '...' }`). Your agent's instructions should guide it to present this URL to the user. After the user visits this URL and grants permissions, the tool can be used successfully. See the [Managing user authorization](/resources/mastra/user-auth-interrupts) guide for more details on handling authentication flows.</Callout>

app/en/guides/agent-frameworks/openai-agents/overview/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ For a full list of available MCP Servers, visit the [Arcade MCP Servers](/resour
177177

178178
Ready to start building with Arcade and OpenAI Agents? Check out these guides:
179179

180-
- [Using Arcade tools](/home/oai-agents/use-arcade-tools) - Learn the basics of using Arcade tools with OpenAI Agents
181-
- [Managing user authorization](/home/oai-agents/user-auth-interrupts) - Handle tool authorization efficiently
180+
- [Using Arcade tools](/resources/oai-agents/use-arcade-tools) - Learn the basics of using Arcade tools with OpenAI Agents
181+
- [Managing user authorization](/resources/oai-agents/user-auth-interrupts) - Handle tool authorization efficiently
182182
- [Creating custom tools](/guides/create-tools/tool-basics/build-mcp-server) - Build your own tools with the Arcade Tool SDK
183183

184184
Enjoy exploring Arcade and building powerful AI-enabled applications!

app/en/guides/agent-frameworks/vercelai/using-arcade-tools/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const arcade = new Arcade();
8383

8484
### Get tools from Arcade's Gmail MCP Server and convert them to Zod
8585

86-
Arcade offers methods to convert tools into Zod schemas, which is essential since the Vercel AI SDK defines tools using Zod. The `toZodToolSet` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with the Vercel AI SDK. Learn more about Arcade's Zod integration options [here](/home/use-tools/get-tool-definitions#get-zod-tool-definitions).
86+
Arcade offers methods to convert tools into Zod schemas, which is essential since the Vercel AI SDK defines tools using Zod. The `toZodToolSet` method is particularly useful, as it simplifies this integration and makes it easier to use Arcade's tools with the Vercel AI SDK. Learn more about Arcade's Zod integration options [here](/guides/tool-calling/get-tool-definitions#get-zod-tool-definitions).
8787

8888
```ts
8989
// Get Arcade's gmail MCP Server

app/en/guides/create-tools/error-handling/useful-tool-errors/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,4 @@ This will raise a `ToolOutputError` because the return type doesn't match the an
228228

229229
## Handling tool errors in agents
230230

231-
To learn more about how to handle tool errors in your Agent, see the [Use Tools](/home/use-tools/error-handling) section.
231+
To learn more about how to handle tool errors in your Agent, see the [Use Tools](/guides/tool-calling/error-handling) section.

app/en/guides/create-tools/tool-basics/build-mcp-server/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ For HTTP transport, view your server's API docs at [http://127.0.0.1:8000/docs](
246246
to expose your HTTP MCP server to the public internet with tool-level
247247
authorization and secrets, please follow the [deploying to the cloud with
248248
Arcade Deploy](/guides/deployment-hosting/arcade-deploy) guide or the [on-prem MCP
249-
server](/home/deployment/on-prem-mcp) guide for secure remote deployment.
249+
server](/guides/deployment-hosting/on-prem guide for secure remote deployment.
250250
</Callout>
251251

252252
</Tabs.Tab>

0 commit comments

Comments
 (0)