Skip to content

Commit 760d587

Browse files
authored
Term consistency 2 (#564)
* Fixing typos * Auth providers and integration clean up * Removing VS Code settings * Removing VS Code settings 2 * Cleaning up settings fiasco maybe
1 parent 5ab9891 commit 760d587

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

app/en/home/agentic-development/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Give your AI IDE access to Arcade.dev's documentation using our [llms.txt](/llms
99

1010
## LLMs.txt
1111

12-
LLMs.txt is a file format that allows you to give your AI IDE access to Arcade.dev's documentation in a format that can be easily parsed by the LLM. All you need to do is paste in the conent of the file into your IDE's settings, or reference the docs, e.g. via [Cursor's `@docs` annotation](https://cursor.com/docs/context/symbols#docs).
12+
LLMs.txt is a file format that allows you to give your AI IDE access to Arcade.dev's documentation in a format that can be easily parsed by the LLM. All you need to do is paste in the content of the file into your IDE's settings, or reference the docs, e.g. via [Cursor's `@docs` annotation](https://cursor.com/docs/context/symbols#docs).
1313

1414
Our LLMs.txt files are available at [`/llms.txt`](/llms.txt).
1515

app/en/home/auth-providers/oauth2/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import ToggleContent from "@/app/_components/toggle-content";
1111
The OAuth 2.0 auth provider enables tools and agents to authorize with any OAuth 2.0-compatible API on behalf of a user.
1212

1313
<Callout>
14-
Arcade has [pre-built integrations](/home/auth-providers) with many popular
15-
OAuth 2.0 providers. Use this OAuth 2.0 provider to connect to other systems
14+
Arcade has [pre-built auth providers](/home/auth-providers) for many popular
15+
OAuth 2.0 services. Use this OAuth 2.0 provider to connect to other systems
1616
that aren't pre-built.
1717
</Callout>
1818

app/en/home/auth-providers/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ It can be useful to configure your own auth provider for the following reasons:
1515

1616
- You want to use your own brand on the auth screen
1717
- You want to isolate your rate limits from other Arcade customers
18-
- You want to use a provider that Arcade [does not have a built-in integration for](/home/auth-providers/oauth2)
18+
- You want to use a service that Arcade [does not have a built-in auth provider for](/home/auth-providers/oauth2)
1919

2020
After adding an auth provider used by an Arcade tool, executing the tool will automatically use your auth provider. Even in the Arcade Cloud Platform, your auth provider will take precedence over the arcade-provided auth provider.
2121

app/en/home/auth-providers/zendesk/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The following three guides from Zendesk will be helpful additional information a
4242
### Creating a Zendesk app for Arcade
4343

4444
1. Create your Organization in the [Zendesk Marketplace portal](https://apps.zendesk.com/).
45-
1. Create a Zendesk support account at https://www.zendesk.com/login . If you need a global OAuth client, then the subdomain MUST begin with "d3v-". You will need a global OAuth client if your app will use integrations/tools for multiple customers with their own Zendesk instances (multiple subdomains).
45+
1. Create a Zendesk support account at https://www.zendesk.com/login . If you need a global OAuth client, then the subdomain MUST begin with "d3v-". You will need a global OAuth client if your app will use tools for multiple customers with their own Zendesk instances (multiple subdomains).
4646
1. In [the Admin Center](https://support.zendesk.com/hc/en-us/articles/4581766374554#topic_hfg_dyz_1hb), click "Apps and integrations" in the sidebar, then select APIs > OAuth clients > Add OAuth client.
4747
- Ensure your identifier is prefixed with "zdg-" if you will need a global OAuth client.
4848
- Select "Public" for "Client kind".

app/en/home/build-tools/create-a-tool-with-auth/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ async with httpx.AsyncClient() as client:
264264

265265
## Key takeaways
266266

267-
- **OAuth Integration:** Arcade handles OAuth flows and token management
267+
- **OAuth Support:** Arcade handles OAuth flows and token management
268268
- **Secure Token Injection:** Tokens are injected into context at runtime
269269
- **Scope Management:** Specify exactly which permissions your tool needs
270270
- **Provider Support:** Multiple OAuth providers available out of the box

app/en/home/changelog/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ Self-hosed Arcade developers cannot be grandfathered into the old (insecure) beh
443443

444444
**Platform and Engine**
445445

446-
- `[feature - 🚀]` Concurrent auth requests for the same user and same scopes use the same authentication flow and URLs. This means that your users only have to authenticate once if the agent chooses to use multiple tools at once with teh same scopes.
446+
- `[feature - 🚀]` Concurrent auth requests for the same user and same scopes use the same authentication flow and URLs. This means that your users only have to authenticate once if the agent chooses to use multiple tools at once with the same scopes.
447447
- `[bugfix - 🐛]` Fix secret deletion
448448

449449
**Cloud**

app/en/home/glossary/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ _Learn more about [the Arcade clients](/references)._
190190

191191
### Arcade Engine
192192

193-
The Arcade Engine is the core of the Arcade platform. It is responsible for routing tool execution requests to the correct worker, managing the lifecycle of tool executions, and for enforcing security and authorization decisions.
193+
The Arcade Engine is the core of the Arcade platform. It is responsible for routing tool execution requests to the correct MCP server, managing the lifecycle of tool executions, and for enforcing security and authorization decisions.
194194

195195
The Arcade Engine is also responsible for the OAuth flow for your agent's users. This includes granting and elevating permissions and keeping tokens fresh.
196196

app/en/home/oai-agents/user-auth-interrupts/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ This example handles the authentication flow by:
423423

424424
## Authentication persistence
425425

426-
Once a user authorizes an integration, Arcade will remember the authorization for that specific user_id and MCP Server. You don't need to re-authorize each time you run the agent.
426+
Once a user authorizes with an auth provider, Arcade will remember the authorization for that specific user_id and MCP Server. You don't need to re-authorize each time you run the agent.
427427

428428
Key points to remember:
429429

app/en/home/serve-tools/arcade-deploy/page.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { SignupLink } from "@/app/_components/analytics";
88

99
# Deploying to the cloud with Arcade Deploy
1010

11-
Running your MCP servers locally is very convenient during development and testing. Once your MCP server is mature, however, you may want to access it from any MCP client, or to facilitate multi-user support. Doing all that from your computer comes with the complexity of running and maintaining a server, handling auth and high availability for all your users and all the integrations you want to support. Arcade Deploy takes care of all that for you. Your MCP server will be registered to Arcade, adding all the tools you created to the larger tool catalog. From there, you can create MCP Gateways to pick and choose which tools you want to use in you MCP clients, which can be from any connected MCP server.
11+
Running your MCP servers locally is very convenient during development and testing. Once your MCP server is mature, however, you may want to access it from any MCP client, or to facilitate multi-user support. Doing all that from your computer comes with the complexity of running and maintaining a server, handling auth and high availability for all your users and all the integrations you want to support. Arcade Deploy takes care of all that for you. Your MCP server will be registered to Arcade, adding all the tools you created to the larger tool catalog. From there, you can create MCP Gateways to pick and choose which tools you want to use in your MCP clients, which can be from any connected MCP server.
1212

1313
<GuideOverview>
1414
<GuideOverview.Outcomes>
@@ -28,7 +28,7 @@ This guide shows you how to deploy your MCP Server with Arcade Deploy.
2828
<GuideOverview.YouWillLearn>
2929

3030
- How to deploy your existing MCP Server to the cloud with the `arcade deploy` CLI command.
31-
- How to create an MCP Gateway to pick and choose which tools you want to use in you MCP clients.
31+
- How to create an MCP Gateway to pick and choose which tools you want to use in your MCP clients.
3232
- How to use Arcade clients to call the tools in your MCP Server.
3333

3434
</GuideOverview.YouWillLearn>
@@ -152,7 +152,7 @@ Navigate to the [Servers](https://api.arcade.dev/dashboard/servers) page in your
152152
153153
## Create an MCP Gateway to call the tools in your MCP Server
154154
155-
Once the MCP server is deployed to Arcade, all the tools in the server will be available in the [tool catalog](https://api.arcade.dev/dashboard/tools) page in your Arcade dashboard. To call the tools from an MCP client, you first need to [create an MCP Gateway](/home/mcp-gateways) to pick and choose which tools you want to use in you MCP clients.
155+
Once the MCP server is deployed to Arcade, all the tools in the server will be available in the [tool catalog](https://api.arcade.dev/dashboard/tools) page in your Arcade dashboard. To call the tools from an MCP client, you first need to [create an MCP Gateway](/home/mcp-gateways) to pick and choose which tools you want to use in your MCP clients.
156156
157157
When creating an MCP gateway, you can select the tools you want to include in the Gateway from any MCP Servers available to the project, including the one you just deployed.
158158

app/en/home/use-tools/tools-overview/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ In the example above, when the user asks: "_help me analyze the 'Project XYZ' Go
4040

4141
One challenge to make all that happen is authorization. How do you give the LLM permission to access someone's Google Docs and Gmail in a secure and convenient way?
4242

43-
Arcade solves this problem by providing a standardized [interface for authorization](/home/auth/how-arcade-helps), as well as pre-built integrations with [popular services](/home/auth-providers) such as Google, Dropbox, GitHub, Notion, and many more.
43+
Arcade solves this problem by providing a standardized [interface for authorization](/home/auth/how-arcade-helps), as well as pre-built auth providers for [popular services](/home/auth-providers) such as Google, Dropbox, GitHub, Notion, and many more.
4444

4545
Our SDK also [allows you to integrate](/home/auth-providers/oauth2) LLMs with any OAuth 2.0-compliant API.
4646

0 commit comments

Comments
 (0)