Skip to main content
Glama

MCP Printer Server

by steveclarke
vitest.config.ts•914 B
import { defineConfig } from "vitest/config" export default defineConfig({ test: { // Test environment environment: "node", // Global test setup globals: true, // Default timeout for unit tests (5 seconds) // Integration tests override this via CLI flag in package.json scripts testTimeout: 5000, // Coverage configuration coverage: { provider: "v8", reporter: ["text", "json", "html"], include: ["src/**/*.ts"], exclude: [ "src/**/*.d.ts", "src/index.ts", // Entry point - just calls startServer ], // Coverage thresholds (optional - can be enabled later) // thresholds: { // lines: 80, // functions: 80, // branches: 80, // statements: 80, // }, }, // Include and exclude patterns include: ["tests/**/*.test.ts"], exclude: ["node_modules", "dist"], }, })

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/steveclarke/mcp-printer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server