{
  "info": {
    "name": "Reddit — mcp.ai",
    "description": "REST API for the Reddit MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/reddit",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "reddit_create_reddit_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/reddit/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "reddit",
            "post"
          ]
        },
        "description": "Creates a new text or link post on a specified, existing reddit subreddit, optionally applying a flair.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"kind\": \"\",\n  \"text\": \"\",\n  \"title\": \"\",\n  \"flair_id\": \"\",\n  \"subreddit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_delete_reddit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/reddit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "reddit",
            "comment"
          ]
        },
        "description": "Deletes a reddit comment, identified by its fullname id, if it was authored by the authenticated user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_delete_reddit_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/reddit/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "reddit",
            "post"
          ]
        },
        "description": "Permanently deletes a reddit post by its id, provided the authenticated user has deletion permissions for that post.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_edit_reddit_comment_or_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/reddit/comment/or/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "reddit",
            "comment",
            "or",
            "post"
          ]
        },
        "description": "Edits the body text of the authenticated user's own existing comment or self-post on reddit; cannot edit link posts or titles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"thing_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_get_user_flair",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/flair",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "flair"
          ]
        },
        "description": "Fetches the list of available link flairs (i.e., post flairs, not user flairs) for a given subreddit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"subreddit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_post_reddit_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/reddit/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "reddit",
            "comment"
          ]
        },
        "description": "Posts a comment on reddit, replying to an existing and accessible submission (post) or another comment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": \"\",\n  \"thing_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_retrieve_post_comments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/post/comments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "post",
            "comments"
          ]
        },
        "description": "Retrieves all comments for a reddit post given its article id (which must be for an existing, public post); nested replies within comments are returned as raw dictionaries requiring parsing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"article\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_retrieve_reddit_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/reddit/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "reddit",
            "post"
          ]
        },
        "description": "Retrieves the current hot posts from a specified, publicly accessible subreddit.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"subreddit\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_retrieve_specific_comment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/specific/comment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "specific",
            "comment"
          ]
        },
        "description": "Retrieves detailed information for a specific reddit comment or post using its fullname.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "reddit_search_across_subreddits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/across/subreddits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "across",
            "subreddits"
          ]
        },
        "description": "Searches reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict sr` is set to false.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"restrict_sr\": false,\n  \"search_query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}