Skip to main content
Glama
paulsham

Wiki Analytics Specification MCP Server

by paulsham
errors.js428 B
/** * Custom error classes for MCP server */ export class NotFoundError extends Error { constructor(type, name) { super(`${type} '${name}' not found`); this.name = 'NotFoundError'; this.type = type; this.resourceName = name; } } export class ValidationError extends Error { constructor(message, details = null) { super(message); this.name = 'ValidationError'; this.details = details; } }

Latest Blog Posts

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/paulsham/wiki-mcp-analytics-test-1.1.0'

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