Skip to main content
Glama

joplin-mcp-server

MIT License
10
1
  • Apple
  • Linux
vitest.setup.ts663 B
import { beforeAll, afterAll } from "vitest" import dotenv from "dotenv" import { resolve } from "path" // Load test environment variables beforeAll(() => { // Try to load .env.test.local, fallback to .env.test, then .env const envFiles = [".env.test.local", ".env.test", ".env"] for (const envFile of envFiles) { try { dotenv.config({ path: resolve(process.cwd(), envFile) }) break } catch (_error) { // Continue to next file if current one doesn't exist } } // Set test defaults if not provided if (!process.env.JOPLIN_PORT) { process.env.JOPLIN_PORT = "41184" } }) afterAll(() => { // Cleanup if needed })

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/jordanburke/joplin-mcp-server'

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