We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lightos/interactive-shell-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Win32Echo2.cc•307 B
/*
* A Win32 program that reads raw console input with getch and echos
* it to stdout.
*/
#include <stdio.h>
#include <conio.h>
int main()
{
int count = 0;
while (true) {
int ch = getch();
printf("%02x ", ch);
if (++count == 50)
break;
}
return 0;
}