{
  "info": {
    "name": "Inblog — mcp.ai",
    "description": "REST API for the Inblog 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/inblog",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "inblog_create_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "post"
          ]
        },
        "description": "Create an unpublished draft post with content, SEO metadata, and optional tag and author assignments. Use Set Post Publication to publish or schedule it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"image\": \"\",\n  \"title\": \"\",\n  \"form_id\": 0,\n  \"tag_ids\": \"\",\n  \"author_ids\": \"\",\n  \"meta_title\": \"\",\n  \"description\": \"\",\n  \"content_html\": \"\",\n  \"canonical_url\": \"\",\n  \"meta_description\": \"\",\n  \"preserve_external_images\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_get_analytics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/analytics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "analytics"
          ]
        },
        "description": "Return a bounded blog or post analytics report for traffic trends, traffic sources, or per-post performance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"post_id\": 0,\n  \"sort_by\": \"\",\n  \"end_date\": \"\",\n  \"interval\": \"\",\n  \"page_type\": \"\",\n  \"start_date\": \"\",\n  \"report_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_get_blog",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/blog",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "blog"
          ]
        },
        "description": "Return the connected API key's blog identity, plan, domain, locale, timezone, assets, and integration settings.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_list_posts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/posts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "posts"
          ]
        },
        "description": "List and filter posts in the connected blog, one page at a time, optionally including tags and authors.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"tag_id\": 0,\n  \"sort_by\": \"\",\n  \"author_id\": \"\",\n  \"published\": false,\n  \"next_cursor\": \"\",\n  \"content_type\": \"\",\n  \"include_content_html\": false,\n  \"include_relationships\": \"\",\n  \"published_at_or_after\": \"\",\n  \"published_at_or_before\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_list_redirects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/redirects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "redirects"
          ]
        },
        "description": "List the blog's URL redirect rules one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Return all tags available in the connected blog for discovery and post assignment.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_set_post_publication",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/post/publication",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "post",
            "publication"
          ]
        },
        "description": "Publish, unpublish, or schedule an existing Inblog post. Returns a normalized publication_status and action_effective result because Inblog represents a schedule as published=true with its future time",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action\": \"\",\n  \"post_id\": 0,\n  \"scheduled_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_update_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "post"
          ]
        },
        "description": "Partially update a post's content, SEO metadata, or complete tag and author assignments without changing publication state. Omitted fields remain unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"image\": \"\",\n  \"title\": \"\",\n  \"form_id\": 0,\n  \"post_id\": 0,\n  \"tag_ids\": \"\",\n  \"author_ids\": \"\",\n  \"meta_title\": \"\",\n  \"description\": \"\",\n  \"content_html\": \"\",\n  \"canonical_url\": \"\",\n  \"meta_description\": \"\",\n  \"preserve_external_images\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_upsert_redirect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/redirect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "redirect"
          ]
        },
        "description": "Create a URL redirect when redirect_id is omitted, or partially update that redirect when redirect_id is provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to_path\": \"\",\n  \"from_path\": \"\",\n  \"redirect_id\": \"\",\n  \"redirect_type\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inblog_upsert_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upsert/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upsert",
            "tag"
          ]
        },
        "description": "Create a tag when tag_id is omitted, or partially update that tag when tag_id is provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"tag_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}