We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tago-io/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
vitest.config.ts•394 B
import swc from "unplugin-swc";
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
root: "./src",
},
plugins: [
// This is required to build the test files with SWC
swc.vite({
// Explicitly set the module type to avoid inheriting this value from a `.swcrc` config file
module: { type: "es6" },
}),
],
});