Skip to content

Commit fc6c996

Browse files
authored
Fix words on the 'Create an MCP Server' page (#524)
Fix words
1 parent 414a9fa commit fc6c996

File tree

1 file changed

+8
-8
lines changed
  • app/en/home/build-tools/create-a-mcp-server

1 file changed

+8
-8
lines changed

app/en/home/build-tools/create-a-mcp-server/page.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import { Steps, Tabs, Callout } from "nextra/components";
77

88
# Creating an MCP Server with Arcade
99

10-
The `arcade_mcp_server` package provides powerful ways to run MCP servers with your Arcade tools. This guide walks you through the complete process of creating a custom MCP with Arcade.
10+
The `arcade_mcp_server` package provides powerful ways to run MCP servers with your Arcade tools. This guide walks you through the complete process of creating a custom MCP server with Arcade.
1111

1212
<GuideOverview>
1313
<GuideOverview.Outcomes>
1414

15-
Build and run an MCP Server with tools that you define.
15+
Build and run an MCP server with tools that you define.
1616

1717
</GuideOverview.Outcomes>
1818

@@ -25,7 +25,7 @@ Build and run an MCP Server with tools that you define.
2525

2626
<GuideOverview.YouWillLearn>
2727

28-
- How to run MCP Servers with Arcade tools using the [`arcade_mcp_server`](https://python.mcp.arcade.dev/api/server/server/) package
28+
- How to run MCP servers with Arcade tools using the [`arcade_mcp_server`](https://python.mcp.arcade.dev/api/server/server/) package
2929
- How to use `arcade new` from the `arcade-mcp` CLI to create your server project with all necessary files and dependencies.
3030
- How to run your local MCP Server with the Arcade CLI and register it with the Arcade Engine so that your agent can find and use your tool.
3131

@@ -39,7 +39,7 @@ Build and run an MCP Server with tools that you define.
3939
In your terminal, run the following command to install the `arcade-mcp` package:
4040

4141
```bash
42-
uv pip install arcade-mcp
42+
uv tool install arcade-mcp
4343
```
4444

4545
This package includes the CLI tools and the `arcade-mcp-server` library.
@@ -172,15 +172,15 @@ That's it! Your MCP server is running and connected to your AI assistant.
172172
## Key takeaways
173173

174174
- **Minimal Setup** Create `MCPApp`, define tools with `@app.tool`, and run with `app.run()`
175-
- **Direct Execution** Run your server file directly with uv run or python
175+
- **Direct Execution** Run your server file directly with `uv run` or `python`
176176
- **Transport Flexibility** Works with both stdio (for Claude Desktop) and HTTP
177-
- **Type Annotations** Use Annotated to provide descriptions for parameters and return values
177+
- **Type Annotations** Use `Annotated` to provide descriptions to the language model for parameters and return values
178178
- **Command Line Arguments** Pass transport type as command line argument
179179

180180
### Next steps
181181

182-
- [Understand the tool context](/home/build-tools/tool-context)
183-
- **Add authentication**: [Learn how to create tools with authentication](/home/build-tools/create-a-tool-with-auth)
182+
- [Understand the `Context` object](/home/build-tools/tool-context)
183+
- **Add authorization**: [Learn how to create tools with authorization](/home/build-tools/create-a-tool-with-auth)
184184
- **Add secrets**: [Learn how to create tools with secrets](/home/build-tools/create-a-tool-with-secrets)
185185
- **Evaluate your tools**: [Explore how to evaluate tool performance](/home/evaluate-tools/why-evaluate-tools)
186186
- **Set up CI/CD**: Automate testing and deployment with continuous integration

0 commit comments

Comments
 (0)