Hello, and thanks for great AI. I’m using gemini-2.0-flash for testing MCPs using MCP client named fastagent, with OpenAI copetible API. (To note, parallel tool is turned off.)
MCP works great - it has no problem calling tools provided.
However, somehow every tools which have something to do with editing the existing files gaves me an error.
For example, official filesystem MCP.
It navigates file system and reads/writes files without any problem - but calling filesystem-edit_file
tool always fails.
In the same way, I couldn’t use any memory-related MCP as they fails.
I don’t really know why. It always fails generating contents when it comes to editing files, but works just fine otherwise.
Below is log.
Request (contains full filesystem MCP api so it's quite long):
{
"model":"gemini-2.0-flash",
"messages":[
{
"role":"system",
"content":"\nYou are helpful AI agent.\n"
},
{
"role":"user",
"content":"Edit first line of C:/fastagent/texts/helloworld.txt to \"Hello, test world!\"."
}
],
"tools":[
{
"type":"function",
"function":{
"name":"filesystem-read_file",
"description":"Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
}
},
"required":[
"path"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-read_multiple_files",
"description":"Read the contents of multiple files simultaneously. This is more efficient than reading files one by one when you need to analyze or compare multiple files. Each file's content is returned with its path as a reference. Failed reads for individual files won't stop the entire operation. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"paths":{
"type":"array",
"items":{
"type":"string"
}
}
},
"required":[
"paths"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-write_file",
"description":"Create a new file or completely overwrite an existing file with new content. Use with caution as it will overwrite existing files without warning. Handles text content with proper encoding. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
},
"content":{
"type":"string"
}
},
"required":[
"path",
"content"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-edit_file",
"description":"Make line-based edits to a text file. Each edit replaces exact line sequences with new content. Returns a git-style diff showing the changes made. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
},
"edits":{
"type":"array",
"items":{
"type":"object",
"properties":{
"oldText":{
"type":"string",
"description":"Text to search for - must match exactly"
},
"newText":{
"type":"string",
"description":"Text to replace with"
}
},
"required":[
"oldText",
"newText"
],
"additionalProperties":false
}
},
"dryRun":{
"type":"boolean",
"default":false,
"description":"Preview changes using git-style diff format"
}
},
"required":[
"path",
"edits"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-create_directory",
"description":"Create a new directory or ensure a directory exists. Can create multiple nested directories in one operation. If the directory already exists, this operation will succeed silently. Perfect for setting up directory structures for projects or ensuring required paths exist. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
}
},
"required":[
"path"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-list_directory",
"description":"Get a detailed listing of all files and directories in a specified path. Results clearly distinguish between files and directories with [FILE] and [DIR] prefixes. This tool is essential for understanding directory structure and finding specific files within a directory. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
}
},
"required":[
"path"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-directory_tree",
"description":"Get a recursive tree view of files and directories as a JSON structure. Each entry includes 'name', 'type' (file/directory), and 'children' for directories. Files have no children array, while directories always have a children array (which may be empty). The output is formatted with 2-space indentation for readability. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
}
},
"required":[
"path"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-move_file",
"description":"Move or rename files and directories. Can move files between directories and rename them in a single operation. If the destination exists, the operation will fail. Works across different directories and can be used for simple renaming within the same directory. Both source and destination must be within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"source":{
"type":"string"
},
"destination":{
"type":"string"
}
},
"required":[
"source",
"destination"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-search_files",
"description":"Recursively search for files and directories matching a pattern. Searches through all subdirectories from the starting path. The search is case-insensitive and matches partial names. Returns full paths to all matching items. Great for finding files when you don't know their exact location. Only searches within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
},
"pattern":{
"type":"string"
},
"excludePatterns":{
"type":"array",
"items":{
"type":"string"
},
"default":[
]
}
},
"required":[
"path",
"pattern"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-get_file_info",
"description":"Retrieve detailed metadata about a file or directory. Returns comprehensive information including size, creation time, last modified time, permissions, and type. This tool is perfect for understanding file characteristics without reading the actual content. Only works within allowed directories.",
"parameters":{
"type":"object",
"properties":{
"path":{
"type":"string"
}
},
"required":[
"path"
],
"additionalProperties":false,
"$schema":"http://json-schema.org/draft-07/schema#"
}
}
},
{
"type":"function",
"function":{
"name":"filesystem-list_allowed_directories",
"description":"Returns the list of directories that this server is allowed to access. Use this to understand which directories are available before trying to access files.",
"parameters":{
"type":"object",
"properties":{
},
"required":[
]
}
}
}
],
"max_tokens":2048,
"parallel_tool_calls":false
}
Response:
Error code: 400 - [{'error': {'code': 400, 'message': '* GenerateContentRequest.contents[1].parts: contents.parts must not be empty.