We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/weibaohui/k8m'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"type": "page",
"title": "Demo 列表 (集群)",
"body": [
{
"type": "crud",
"api": "get:/k8s/plugins/demo/items",
"columns": [
{
"name": "id",
"label": "ID"
},
{
"name": "name",
"label": "名称"
},
{
"name": "description",
"label": "描述"
},
{
"name": "created_at",
"label": "创建时间"
},
{
"name": "updated_at",
"label": "更新时间"
}
],
"headerToolbar": [
{
"type": "button",
"actionType": "dialog",
"label": "新增",
"level": "primary",
"dialog": {
"title": "新增",
"body": {
"type": "form",
"api": "post:/k8s/plugins/demo/items",
"controls": [
{
"type": "text",
"name": "name",
"label": "名称",
"required": true
},
{
"type": "textarea",
"name": "description",
"label": "描述"
}
]
}
}
},
"reload"
],
"itemActions": [
{
"type": "button",
"actionType": "dialog",
"label": "编辑",
"dialog": {
"title": "编辑",
"body": {
"type": "form",
"api": "put:/k8s/plugins/demo/items/${id}",
"controls": [
{
"type": "text",
"name": "name",
"label": "名称",
"required": true
},
{
"type": "textarea",
"name": "description",
"label": "描述"
}
]
}
}
},
{
"type": "button",
"actionType": "ajax",
"label": "删除",
"level": "danger",
"confirmText": "确认删除该项?",
"api": "delete:/k8s/plugins/demo/remove/items/${id}"
}
]
}
]
}