Skip to main content
Glama
simple.js749 B
/** * Extremely simple endpoint for Claude Web testing */ export default async function handler(req, res) { // CORS res.setHeader('Access-Control-Allow-Origin', '*'); res.setHeader('Access-Control-Allow-Methods', '*'); res.setHeader('Access-Control-Allow-Headers', '*'); if (req.method === 'OPTIONS') { return res.status(200).end(); } // Always return success with minimal MCP response return res.status(200).json({ tools: [ { name: "test", description: "Test tool", inputSchema: { type: "object", properties: {}, required: [] } } ] }); }

Latest Blog Posts

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/Bizuayeu/day5-api-remote-mcp'

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