We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/files-stdio-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
manifest.json•1.44 KiB
{
"manifest_version": "0.2",
"name": "files-mcp",
"version": "1.0.0",
"description": "MCP server for sandboxed file access. Provides read, search, write, and manage operations with checksum-based safety and line targeting.",
"author": {
"name": "overment"
},
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"FS_ROOT": "${user_config.FS_ROOT}"
}
}
},
"tools": [
{
"name": "fs_read",
"description": "Read files or list directories. Returns line numbers and checksums needed for editing."
},
{
"name": "fs_search",
"description": "Find files by name and search file contents."
},
{
"name": "fs_write",
"description": "Create or update files in the sandboxed filesystem. IMPORTANT: Always call fs_read first to get the checksum. Line-based targeting with dryRun preview."
},
{
"name": "fs_manage",
"description": "Structural operations for files and directories: delete, rename, move, copy, mkdir, stat."
}
],
"user_config": {
"FS_ROOT": {
"type": "directory",
"title": "Root Directory",
"description": "The directory that the agent will have access to. All file operations are sandboxed within this directory.",
"required": true,
"sensitive": false
}
},
"license": "MIT"
}