namespaces

Get user's namespaces or search namespaces

When called without query params, returns the authenticated user's namespaces (backwards compatible). When query params are provided, searches public namespaces with pagination. Use ownerId to filter by owner, hasServers/hasSkills to filter by content, q for text search.

get/namespaces

Query parameters

qstring

Text search query (prefix match on name)

ownerIdstring

Filter by owner ID

hasServers'0' | '1' | 'true' | 'false'

Filter namespaces with servers

hasSkills'0' | '1' | 'true' | 'false'

Filter namespaces with skills

pageinteger
pageSizeinteger
fieldsstring

Comma-separated list of fields to include in response

Response

Successful response

Example response

{
  "namespaces": [
    {
      "name": "anthropic"
    }
  ]
}

Changes

Changed in 1 of the 47 revisions of this API.110

  • 0ea2d8e23fa1110See the full diff
    • removed the required property // from the response with the status

      response-required-property-removed

    • added the new optional query request parameter fields

      new-optional-request-parameter

    • added the new optional query request parameter hasServers

      new-optional-request-parameter

    • added the new optional query request parameter hasSkills

      new-optional-request-parameter

    • added the new optional query request parameter ownerId

      new-optional-request-parameter

    • added the new optional query request parameter page

      new-optional-request-parameter

    • added the new optional query request parameter pageSize

      new-optional-request-parameter

    • added the new optional query request parameter q

      new-optional-request-parameter

    • added the non-success response with the status

      response-non-success-status-added

    • removed the non-success response with the status

      response-non-success-status-removed

    • added the required property to the response with the status

      response-required-property-added