feat(mcp): implement mcp server management with CRUD operations

This commit is contained in:
2025-10-23 16:28:23 +08:00
parent a1ac879c6c
commit b513565f30
11 changed files with 1373 additions and 23 deletions

53
mcp/Mock.json Normal file
View File

@@ -0,0 +1,53 @@
{
"mcpServers": {
"Time": {
"type": "mcp_server_time",
"url": "http://localhost:8080",
"name": "Time Server",
"authorization_token": "",
"tool_configuration": {}
},
"Mock": {
"type": "mcp_server_mock",
"url": "http://localhost:8080",
"name": "Mock Server",
"authorization_token": "",
"tool_configuration": {}
},
"Filesystem": {
"type": "mcp_server_filesystem",
"url": "http://localhost:8080",
"name": "Filesystem Server",
"authorization_token": "",
"tool_configuration": {}
},
"MockFilesystem": {
"type": "mcp_server_mock_filesystem",
"url": "http://localhost:8080",
"name": "Mock Filesystem Server",
"authorization_token": "",
"tool_configuration": {}
},
"MockTime": {
"type": "mcp_server_mock_time",
"url": "http://localhost:8080",
"name": "Mock Time Server",
"authorization_token": "",
"tool_configuration": {}
},
"MockMock": {
"type": "mcp_server_mock_mock",
"url": "http://localhost:8080",
"name": "Mock Mock Server",
"authorization_token": "",
"tool_configuration": {}
},
"MockMockFilesystem": {
"type": "mcp_server_mock_mock_filesystem",
"url": "http://localhost:8080",
"name": "Mock Mock Filesystem Server",
"authorization_token": "",
"tool_configuration": {}
}
}
}