Skip to main content
Glama

Nutrient DWS MCP Server

by PSPDFKit
version.ts1.06 kB
import fs, { readFileSync } from 'fs' import { dirname, resolve } from 'path' import { fileURLToPath } from 'url' /** * Reliably gets the package.json contents even when the package is published */ export function getVersion(): string { try { // Start from the current file's directory let currentDir = dirname(fileURLToPath(import.meta.url)) let packagePath = '' while (true) { packagePath = resolve(currentDir, 'package.json') if (fs.existsSync(packagePath)) { break } // Move up to parent directory const parentDir = resolve(currentDir, '..') // Stop if we've reached the root if (parentDir === currentDir) { throw new Error('Could not find package.json in any parent directory') } currentDir = parentDir } const packageJSON = JSON.parse(readFileSync(packagePath, 'utf8')) return packageJSON.version } catch (error) { console.error('Failed to read package.json:', error instanceof Error ? error.message : error) return 'unknown' } }

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/PSPDFKit/nutrient-dws-mcp-server'

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