UBIK Agent will launch soon, join the waitlist to get access!
Python
import requests url = "https://app.ubik-agent.com/api/v1/mcp-servers" headers = {"X-API-KEY": "<api-key>"} response = requests.get(url, headers=headers) print(response.text)
{ "items": [ { "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "name": "<string>", "status": "<string>", "description": "<string>", "cached_tools": [ {} ], "cached_resources": [ {} ] } ], "total": 123, "page": 123, "limit": 123, "has_more": true }
Retrieves a paginated list of MCP servers accessible to the user.
x >= 1
1 <= x <= 100
Successful Response
Hide child attributes
The unique identifier for the MCP server.
The name of the MCP server.
The current status of the MCP server (e.g., active, inactive).
A description of the MCP server.
The tools provided by this MCP server.
The resources provided by this MCP server.
Total number of MCP servers available.
The current page number.
The number of items per page.
Indicates if there are more pages available.
Was this page helpful?