MCP Tools
Projects

list_projects

Returns all projects visible to the current user. Projects organize content into workstreams.

Input Schema

{
  "type": "object",
  "properties": {}
}

Output Schema

{
  "type": "array",
  "items": {
    "type": "object",
    "required": [
      "id",
      "name",
      "link_url"
    ],
    "properties": {
      "id": {
        "type": "string",
        "format": "uuid"
      },
      "name": {
        "type": "string"
      },
      "status": {
        "type": "string"
      },
      "link_url": {
        "type": "string",
        "format": "uri",
        "description": "Direct URL to view this project in the MarketCore app."
      },
      "created_by": {
        "type": "string"
      },
      "visibility": {
        "type": "string"
      },
      "member_count": {
        "type": "integer"
      },
      "content_count": {
        "type": "integer",
        "description": "Number of content items in this project"
      }
    }
  }
}

Instructions

Returns all projects visible to the current user. Projects organize content into workstreams. Use the 'id' with get_project to retrieve project details, or pass project_id when creating content to associate it with a project.

Scroll to Top