We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/VeriTeknik/pluggedin-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
static-handlers-helpers.ts•616 B
// Helper function to provide helpful API key setup instructions
export function getApiKeySetupMessage(toolName: string): string {
return `The '${toolName}' tool requires a Plugged.in API key.
To get started:
1. Sign up at https://plugged.in
2. Get your API key from https://plugged.in/settings/api-keys
3. Set the PLUGGEDIN_API_KEY environment variable
4. Restart your MCP client
For detailed setup instructions, run: pluggedin_setup
Available help topics:
- pluggedin_setup topic:getting_started
- pluggedin_setup topic:api_key
- pluggedin_setup topic:configuration
- pluggedin_setup topic:troubleshooting`;
}