We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/NightTrek/Terminally-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•398 B
#!/usr/bin/env node
/**
* Entry point for the Terminally-mcp server
* An MCP server that provides tools for controlling terminal sessions
*/
import { TerminallyServer } from './server.js';
// Initialize and run the server
const server = new TerminallyServer();
server.run().catch((error: Error) => {
console.error('Failed to start Terminally-mcp server:', error);
process.exit(1);
});