{
"config": {
"name": "filesystem",
"command": "npx",
"args": [
"@modelcontextprotocol/server-filesystem",
"/path/to/directory"
],
"env": {
"DEBUG": "true"
},
"description": "Servidor MCP para acceso al sistema de archivos",
"capabilities": [
"tools",
"resources"
],
"_id": "string",
"status": "registered",
"autoReconnect": false,
"userId": "string",
"createdAt": "2019-08-24T14:15:22.123Z",
"updatedAt": "2019-08-24T14:15:22.123Z"
},
"connection": {
"status": "connected",
"connectedAt": "2019-08-24T14:15:22.123Z",
"tools": [
{
"name": "read_file",
"description": "Lee el contenido de un archivo",
"inputSchema": {
"type": "object",
"properties": {
"path": {
"type": "string",
"description": "Ruta del archivo"
}
},
"required": [
"path"
]
}
}
],
"resources": [
{
"uri": "file:///path/to/file.txt",
"name": "archivo.txt",
"description": "string",
"mimeType": "text/plain"
}
],
"toolsCount": 0,
"resourcesCount": 0
}
}