From 985ec15e4ac74466e69232670e1af63e8c3866de Mon Sep 17 00:00:00 2001 From: Eric Gustin Date: Mon, 27 Oct 2025 16:12:25 -0700 Subject: [PATCH] Star the correct repo --- app/en/home/quickstart/page.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/app/en/home/quickstart/page.mdx b/app/en/home/quickstart/page.mdx index a67041ce3..cd76d81bf 100644 --- a/app/en/home/quickstart/page.mdx +++ b/app/en/home/quickstart/page.mdx @@ -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, @@ -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, @@ -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 ```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 ```