Skip to main content
Glama

MCP Printer Server

by steveclarke
handler.goβ€’308 B
package main import ( "fmt" "net/http" ) func helloHandler(w http.ResponseWriter, r *http.Request) { name := r.URL.Query().Get("name") if name == "" { name = "World" } fmt.Fprintf(w, "Hello, %s!", name) } func main() { http.HandleFunc("/hello", helloHandler) http.ListenAndServe(":8080", nil) }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/steveclarke/mcp-printer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server