read_file
Access specific or all files within a project by providing the project ID. Returns file content(s) or error details for analysis on the QuantConnect MCP Server.
Instructions
Read a specific file from a project or all files if no name provided.
Args: project_id: ID of the project to read files from name: Optional name of specific file to read. If not provided, reads all files.
Returns: Dictionary containing file content(s) or error information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | ||
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"project_id": {
"title": "Project Id",
"type": "integer"
}
},
"required": [
"project_id"
],
"type": "object"
}