Skip to main content
Glama

Rijksmuseum MCP Server

by r-huijts
MIT License
14
58
  • Apple
  • Linux
Config.ts554 B
import dotenv from 'dotenv'; export class Config { private static instance: Config; private readonly apiKey: string; private constructor() { dotenv.config(); const apiKey = process.env.RIJKSMUSEUM_API_KEY; if (!apiKey) { throw new Error("RIJKSMUSEUM_API_KEY environment variable is required"); } this.apiKey = apiKey; } static getInstance(): Config { if (!Config.instance) { Config.instance = new Config(); } return Config.instance; } getApiKey(): string { return this.apiKey; } }

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/r-huijts/rijksmuseum-mcp'

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