Reddit MCP Server

Researchstdiov0.2.0
Репозиторий

MCP server for the Reddit API. Lets AI agents search subreddits, fetch hot/new/top posts, read comment threads, and retrieve user activity. Useful for market and community research, sentiment monitoring, trend discovery, and summarizing discussions across communities.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

{
  "mcpServers": {
    "reddit": {
      "command": "uvx",
      "args": [
        "mcp-reddit"
      ],
      "env": {
        "REDDIT_CLIENT_ID": "<YOUR_REDDIT_CLIENT_ID>",
        "REDDIT_CLIENT_SECRET": "<YOUR_REDDIT_CLIENT_SECRET>"
      }
    }
  }
}

Инструменты (2)

get_subreddit_posts

Fetch posts from a subreddit sorted by hot, new, or top.

{
  "type": "object",
  "required": [
    "subreddit"
  ],
  "properties": {
    "sort": {
      "type": "string",
      "description": "Sort order (hot, new, top)"
    },
    "limit": {
      "type": "integer",
      "description": "Number of posts to return"
    },
    "subreddit": {
      "type": "string",
      "description": "Subreddit name without the r/ prefix"
    }
  }
}

get_post_comments

Retrieve the comment tree for a specific Reddit post.

{
  "type": "object",
  "required": [
    "post_id"
  ],
  "properties": {
    "post_id": {
      "type": "string",
      "description": "Reddit post ID"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
Adam Hill (@adhikasp)
Репозиторий
https://github.com/adhikasp/mcp-reddit
Лицензия
MIT
Версия
0.2.0
Звёзды
410
Последнее обновление
9 июля 2026 г.