Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions app/en/home/quickstart/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ response = client.tools.execute(
tool_name="GitHub.SetStarred",
input={
"owner": "ArcadeAI",
"name": "arcade-ai",
"name": "arcade-mcp",
"starred": True,
},
user_id=user_id,
Expand Down Expand Up @@ -162,7 +162,7 @@ const response_github = await client.tools.execute({
tool_name: "GitHub.SetStarred",
input: {
owner: "ArcadeAI",
name: "arcade-ai",
name: "arcade-mcp",
starred: true,
},
user_id: userId,
Expand All @@ -184,15 +184,15 @@ console.log(response_github.output.value);
```bash
python3 example.py
> The square root of 625 is 25
> Successfully starred the repository ArcadeAI/arcade-ai
> Successfully starred the repository ArcadeAI/arcade-mcp

</Tabs.Tab>
<Tabs.Tab>

```bash
node example.mjs
> The square root of 625 is 25
> Successfully starred the repository ArcadeAI/arcade-ai
node example.mjs
> The square root of 625 is 25
> Successfully starred the repository ArcadeAI/arcade-mcp
```

</Tabs.Tab>
Expand Down