We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/joe-watkins/magentaa11y-mcp-remote'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Netlify configuration for MCP Server over HTTP
[build]
command = "npm install && npm run build"
publish = "."
[build.environment]
NODE_VERSION = "18"
[functions]
directory = "netlify/functions"
node_bundler = "esbuild"
external_node_modules = ["fuse.js"]
included_files = ["data/content.json", "build/**/*.js"]
# Route MCP endpoint to the function
[[redirects]]
from = "/mcp"
to = "/.netlify/functions/api"
status = 200
# Handle SSE endpoint for mcp-remote
[[redirects]]
from = "/mcp/*"
to = "/.netlify/functions/api/:splat"
status = 200