We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rochitl72/mcp-den'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
next.config.ts•307 B
import type { NextConfig } from "next";
import path from "node:path";
const nextConfig: NextConfig = {
// Tell Next to treat the repo root as the tracing root,
// since our API spawns ../dist/server.js (outside /web).
outputFileTracingRoot: path.join(__dirname, ".."),
};
export default nextConfig;