Skip to main content
GET
/
mcp-servers
curl -X GET https://api.mcpfy.ai/dev/v1/mcp-servers \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "id": "64f8a1b2c3d4e5f6a7b8c9d0",
    "name": "My MCP Server",
    "isActive": true,
    "createdAt": "2023-09-06T10:30:00.000Z",
    "updatedAt": "2023-09-06T10:30:00.000Z"
  }
]
curl -X GET https://api.mcpfy.ai/dev/v1/mcp-servers \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
[
  {
    "id": "64f8a1b2c3d4e5f6a7b8c9d0",
    "name": "My MCP Server",
    "isActive": true,
    "createdAt": "2023-09-06T10:30:00.000Z",
    "updatedAt": "2023-09-06T10:30:00.000Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved MCP servers

id
string
required

Unique identifier for the MCP server

Example:

"64f8a1b2c3d4e5f6a7b8c9d0"

name
string
required

Name of the MCP server

Example:

"My MCP Server"

isActive
boolean
required

Whether the MCP server is currently active

Example:

true

createdAt
string<date-time>
required

Timestamp when the server was created

Example:

"2023-09-06T10:30:00.000Z"

updatedAt
string<date-time>
required

Timestamp when the server was last updated

Example:

"2023-09-06T10:30:00.000Z"