플랫폼 인텔리전스 MCP

레딧 MCP 서버

레딧은 포럼, 스레드, 텍스트 게시물, 링크, 이미지 및 댓글을 통해 약 1억 2천 1백만 명의 일일 활성 사용자에게 서비스를 제공하여 커뮤니티 통찰력, 평판 추적, 제품 피드백 및 틈새 발견에 중요한 역할을 합니다.

MCP 버전: 1.0.0 14 MCP 도구 인증
레딧

기본 URL

https://mcp.pressmonitor.com/reddit/v1

인증

MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.

Authorization: Bearer YOUR_TOKEN

도구 찾기

MCP 서버에서 노출된 도구를 나열해 보세요.

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tool comments_by_username

사용자별 댓글

사용자별 댓글

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"comments_by_username","arguments":[]}}'
tool get_cursor

커서 가져오기

커서 가져오기

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_cursor","arguments":[]}}'
tool new_subreddits

신규 서브레딧

신규 서브레딧

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"new_subreddits","arguments":[]}}'
tool post_details

게시물 상세

게시물 상세

인수

이름 유형 필수 설명
post_url string 게시물 URL

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"post_details","arguments":{"post_url":"SOME_STRING_VALUE"}}}'
tool posts_by_subreddit

서브레딧별 게시물

서브레딧별 게시물

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"posts_by_subreddit","arguments":[]}}'
tool posts_by_username

사용자별 게시물

사용자별 게시물

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"posts_by_username","arguments":[]}}'
tool search_posts

게시물 검색

게시물 검색

인수

이름 유형 필수 설명
query string 검색 쿼리

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_posts","arguments":{"query":"SOME_STRING_VALUE"}}}'
tool search_subreddits

서브레딧 검색

서브레딧 검색

인수

이름 유형 필수 설명
query string 검색 쿼리

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_subreddits","arguments":{"query":"SOME_STRING_VALUE"}}}'
tool top_comments_by_username

사용자별 최고 댓글

사용자별 최고 댓글

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_comments_by_username","arguments":[]}}'
tool top_posts_by_username

사용자별 최고 게시물

사용자별 최고 게시물

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/reddit/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"top_posts_by_username","arguments":[]}}'