We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jfuginay/tak-server-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"mcpServers": {
"tak-server": {
"command": "node",
"args": [
"/path/to/tak-server-mcp/dist/index.js"
],
"env": {
"TAK_SERVER_URL": "https://your-tak-server.com",
"TAK_SERVER_API_TOKEN": "your-api-token",
"MCP_TRANSPORT": "stdio",
"LOG_LEVEL": "info"
}
},
"tak-server-docker": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "TAK_SERVER_URL=https://your-tak-server.com",
"-e", "TAK_SERVER_API_TOKEN=your-api-token",
"skyfi/tak-server-mcp:latest"
]
},
"tak-server-npm": {
"command": "npx",
"args": [
"@skyfi/tak-server-mcp"
],
"env": {
"TAK_SERVER_URL": "https://your-tak-server.com",
"TAK_SERVER_API_TOKEN": "your-api-token"
}
}
}
}