{
  "info": {
    "name": "SharePoint — mcp.ai",
    "description": "REST API for the SharePoint 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/share_point",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "share_point_sharepoint_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "create",
            "folder"
          ]
        },
        "description": "Creates a new folder in sharepoint using the rest api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"folder_name\": \"\",\n  \"relative_path\": \"\",\n  \"document_library\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "share_point_sharepoint_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "create",
            "list"
          ]
        },
        "description": "Creates a new list in sharepoint using the rest api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"template\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "share_point_sharepoint_create_list_item",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/create/list/item",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "create",
            "list",
            "item"
          ]
        },
        "description": "Creates a new item in a sharepoint list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_name\": \"\",\n  \"item_properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "share_point_sharepoint_create_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/create/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "create",
            "user"
          ]
        },
        "description": "Creates a new user in sharepoint.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"title\": \"\",\n  \"login_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "share_point_sharepoint_find_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/find/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "find",
            "user"
          ]
        },
        "description": "Finds a user in both microsoft graph and sharepoint to verify their existence and status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "share_point_sharepoint_remove_user",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sharepoint/remove/user",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sharepoint",
            "remove",
            "user"
          ]
        },
        "description": "Removes a user from sharepoint. will not fail if user doesn't exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}