We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thejens/lyngdorf-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "lyngdorf-mcp",
"version": "1.0.0",
"description": "Model Context Protocol server for Lyngdorf Audio devices (TDAI, MP, CD series)",
"type": "module",
"main": "dist/index.js",
"bin": {
"lyngdorf-mcp": "dist/index.js"
},
"scripts": {
"dev": "node --watch --experimental-strip-types src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"prepack": "npm run build"
},
"files": [
"dist",
"README.md",
"LICENSE",
"docs"
],
"keywords": [
"mcp",
"model-context-protocol",
"lyngdorf",
"audio",
"home-automation",
"roomperfect"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"ws": "^8.18.3",
"zod": "^3.25.1"
},
"devDependencies": {
"@types/node": "^22.19.1",
"typescript": "^5.7.2",
"vitest": "^4.0.15"
},
"engines": {
"node": ">=22.0.0"
}
}