We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sergiolopez94/motion-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
vitest.integration.config.ts•495 B
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['tests/integration/**/*.integration.test.ts'],
testTimeout: 60_000, // 60s per test — API calls with rate-limit delays are slow
hookTimeout: 60_000, // beforeAll / afterAll may create/delete multiple resources
maxWorkers: 1, // Sequential execution to respect Motion API rate limits
isolate: false, // Single process — no module isolation needed
},
});