v48

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-305398191.8 KB
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"
    }
  ]
}