We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jacopoc/mcp-for-apache-ofbiz'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"name": "mcp-server-for-apache-ofbiz",
"version": "1.0.0",
"description": "A Model Context Protocol (MCP) server platform for Apache OFBiz",
"keywords": [
"mcp",
"modelcontextprotocol",
"apache",
"ofbiz"
],
"license": "Apache-2.0",
"author": "",
"type": "module",
"files": [
"build"
],
"bin": {
"mcp-server-for-apache-ofbiz": "build/server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"express-rate-limit": "^8.2.1",
"jsonwebtoken": "^9.0.3",
"jwks-rsa": "^3.2.1",
"node-fetch": "^3.3.2",
"openid-client": "^6.8.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"exports": {
"./config": {
"types": "./build/lib/config/index.d.ts",
"import": "./build/lib/config/index.js"
}
},
"scripts": {
"build": "npm run clean && tsc && node -e \"require('fs').chmodSync('build/server.js', 0o755)\"",
"clean": "rimraf ./build",
"clean:coverage": "rimraf ./coverage",
"clean:all": "npm run clean && npm run clean:coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier . --write",
"prepare": "node -e \"if(process.env.SKIP_PREPARE)process.exit(0);try{require.resolve('typescript')}catch{process.exit(0)};require('child_process').execSync('npm run build',{stdio:'inherit'})\"",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest"
}
}