We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mfukushim/map-traveler-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import * as path from "path"
import { defineConfig } from "vitest/config"
export default defineConfig({
plugins: [],
test: {
// globalSetup: [path.join(__dirname, "globalSetup.ts")],
setupFiles: [path.join(__dirname, "setupTests.ts")],
include: ["./test/**/*.test.ts"],
globals: true,
testTimeout:5*60*1000,
},
resolve: {
alias: {
"@template/basic/test": path.join(__dirname, "test"),
"@template/basic": path.join(__dirname, "src")
}
}
})