Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
onyx-mcp-server
by
lupuletic
Verified
GitHub
Search
Knowledge & Memory
TypeScript
MIT License
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
onyx-mcp-server
docs
.github
.husky
src
CHANGELOG.md
.clinerules
CODE_OF_CONDUCT.md
commitlint.config.js
CONTRIBUTING.md
Dockerfile
.eslintrc.cjs
.gitignore
glama.json
jest.config.cjs
LICENSE
.npmignore
package.json
package-lock.json
README.md
SECURITY.md
smithery.yaml
tsconfig.json
tsconfig.test.json
{ "name": "onyx-mcp-server", "version": "1.2.0", "description": "Model Context Protocol (MCP) server for seamless integration with Onyx AI knowledge bases", "main": "build/index.js", "type": "module", "scripts": { "build": "tsc && chmod +x build/index.js", "start": "node build/index.js", "dev": "ts-node src/index.ts", "commit": "cz", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.cjs", "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.cjs --watch", "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.cjs --coverage", "lint": "eslint . --ext .ts --config .eslintrc.cjs --max-warnings=${ESLINT_MAX_WARNINGS:-0}", "lint:fix": "eslint . --ext .ts --config .eslintrc.cjs --fix", "prepare": "husky install", "prepublishOnly": "npm run lint && npm run test && npm run build" }, "keywords": [ "mcp", "onyx", "search", "ai", "knowledge-base", "rag", "llm", "chat", "semantic-search" ], "author": "Onyx MCP Server Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/lupuletic/onyx-mcp-server.git" }, "homepage": "https://github.com/lupuletic/onyx-mcp-server#readme", "bugs": { "url": "https://github.com/lupuletic/onyx-mcp-server/issues" }, "files": [ "build/**/*", "LICENSE", "README.md", "CHANGELOG.md" ], "dependencies": { "@modelcontextprotocol/sdk": "latest", "axios": "^1.6.7" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "@commitlint/cli": "^18.6.0", "@commitlint/config-conventional": "^18.6.0", "@typescript-eslint/eslint-plugin": "^7.0.1", "@typescript-eslint/parser": "^7.0.1", "commitizen": "^4.3.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.56.0", "husky": "^9.1.7", "jest": "^29.7.0", "lint-staged": "^15.5.0", "nock": "^13.5.1", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "typescript": "^5.3.3" }, "lint-staged": { "*.ts": "eslint --config .eslintrc.cjs --fix" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] } }