We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tedlikeskix/mcp-ip-geolocator'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env node
import { MCPServer } from '@agentico/mcp-server';
import { IPGeolocationTool } from './tools/IPGeolocationTool.js';
const server = new MCPServer('IP Geolocation Server', '1.0.0');
async function main() {
// Register the IP geolocation tool
server.registerTool("ip-geolocation", IPGeolocationTool);
console.log('Starting IP Geolocation MCP Server...');
await server.run();
}
main().catch((error) => {
console.error("Server error:", error);
process.exit(1);
});