{"name": "Rehsis Local MCP", "version": "1.0", "description": "Ana Makina local file + SQL access", "tools": [{"name": "read_file", "description": "Reads a file from the Rehsis project directory.", "inputSchema": {"type": "object", "properties": {"path": {"type": "string", "description": "Relative path from project root"}}, "required": ["path"]}}, {"name": "write_file", "description": "Writes content to a file in the Rehsis project directory.", "inputSchema": {"type": "object", "properties": {"path": {"type": "string"}, "content": {"type": "string"}}, "required": ["path", "content"]}}, {"name": "list_files", "description": "Lists all files in the Rehsis project directory.", "inputSchema": {"type": "object", "properties": {"subdir": {"type": "string", "description": "Optional subdirectory"}}}}, {"name": "list_dir", "description": "Lists files and folders in a directory.", "inputSchema": {"type": "object", "properties": {"path": {"type": "string"}}}}, {"name": "run_sql", "description": "Runs a SQL query on the local SQL Server Express instance.", "inputSchema": {"type": "object", "properties": {"query": {"type": "string"}}, "required": ["query"]}}]}