File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
app/en/mcp-servers/social-communication/reddit
public/examples/integrations/mcp-servers/reddit Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ These tools are currently available in the Arcade Reddit MCP Sever.
5050 " Get content (body) of multiple Reddit posts." ,
5151 ],
5252 [
53- " Reddit.GetTopLevelCommentsOfPost " ,
53+ " Reddit.GetTopLevelComments " ,
5454 " Get the first page of top-level comments of a Reddit post." ,
5555 ],
5656 [
@@ -245,7 +245,7 @@ Get the content (body) of multiple Reddit posts by their identifiers in a single
245245
246246---
247247
248- ## Reddit.GetTopLevelCommentsOfPost
248+ ## Reddit.GetTopLevelComments
249249
250250<br />
251251<TabbedCodeBlock
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs";
33const client = new Arcade ( ) ; // Automatically finds the `ARCADE_API_KEY` env variable
44
55const USER_ID = "{arcade_user_id}" ;
6- const TOOL_NAME = "Reddit.GetTopLevelCommentsOfPost " ;
6+ const TOOL_NAME = "Reddit.GetTopLevelComments " ;
77
88// Start the authorization process
99const authResponse = await client . tools . authorize ( {
@@ -29,4 +29,4 @@ const response = await client.tools.execute({
2929 user_id : USER_ID ,
3030} ) ;
3131
32- console . log ( response . output . value ) ;
32+ console . log ( response . output . value ) ;
Original file line number Diff line number Diff line change 33client = Arcade () # Automatically finds the `ARCADE_API_KEY` env variable
44
55USER_ID = "{arcade_user_id}"
6- TOOL_NAME = "Reddit.GetTopLevelCommentsOfPost "
6+ TOOL_NAME = "Reddit.GetTopLevelComments "
77
88auth_response = client .tools .authorize (
99 tool_name = TOOL_NAME ,
You can’t perform that action at this time.
0 commit comments