We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/geoffwhittington/sde-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
eslint.config.mjs•334 B
// @ts-check
import eslint from "@eslint/js";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";
export default defineConfig(
{
// Place global ignores in a configuration object
ignores: ["dist/**/*", "build/**/*"],
},
eslint.configs.recommended,
tseslint.configs.recommended
);