Web Scout

write-research-file

Write research content to a file. This tool allows you to save research findings, documentation, or any text content to a specified file path. SECURITY: File writing is controlled by environment variables: - FILE_WRITE_ENABLED must be set to 'true' to enable file writing - ALLOWED_WRITE_PATHS can specify allowed directories (comma-separated) - If no ALLOWED_WRITE_PATHS specified, defaults to user's home directory - FILE_WRITE_LINE_LIMIT controls maximum lines per write operation (default: 200) Use this tool to save research reports, documentation, or any content generated from the deep-research-tool results.

Remote pinkpixel-dev/deep-research-mcp

Other tools also called write-research-file? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "mode": {
      "enum": [
        "rewrite",
        "append"
      ],
      "type": "string",
      "default": "rewrite",
      "description": "Write mode: 'rewrite' to overwrite file, 'append' to add to existing content."
    },
    "content": {
      "type": "string",
      "description": "Content to write to the file."
    },
    "file_path": {
      "type": "string",
      "description": "Path where the file should be written. Must be within allowed directories."
    }
  }
}