get_system_json
Retrieve complete system JSON data by specifying the file name to access metadata and content on the Advanced Reasoning MCP Server.
Instructions
Retrieve a system JSON file by name.
Parameters:
name: Name of the system JSON file to retrieve (required)
Returns the complete system JSON data including metadata and content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Name of the system JSON file to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Name of the system JSON file to retrieve",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}