Reddit MCP Server

Researchstdiov0.2.0
Repositorio

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.

Conectar

Añade esta configuración a .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>"
      }
    }
  }
}

Herramientas (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"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Adam Hill (@adhikasp)
Repositorio
https://github.com/adhikasp/mcp-reddit
Licencia
MIT
Versión
0.2.0
Estrellas
410
Última actualización
9 de julio de 2026