We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ooples/mcp-console-automation'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import fs from 'fs';
const configPath = String.raw`C:\Users\yolan\AppData\Roaming\Claude\claude_desktop_config.json`;
const config = JSON.parse(fs.readFileSync(configPath, 'utf-8'));
config.mcpServers['console-automation'].command = 'node';
config.mcpServers['console-automation'].args = [String.raw`C:\Users\yolan\source\repos\mcp-console-automation\dist\mcp\ultra-persistent-server.js`];
fs.writeFileSync(configPath, JSON.stringify(config, null, 4));
console.log('Switched to fixed ultra-persistent server');