Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Typesense MCP Server
Claim
by
suhail-ak-s
npm
GitHub
Databases
Search
TypeScript
MIT License
7
3
Apple
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
mcp-typesense-server
src
bin.js
.gitignore
launch-claude-with-typesense.sh
LICENSE
.npmignore
package.json
package-lock.json
README.md
tsconfig.json
{ "name": "typesense-mcp-server", "version": "1.0.0", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "stdio": "node dist/index.js --api-key ${TYPESENSE_API_KEY:-demo}", "stdio:dev": "tsx src/index.ts --api-key ${TYPESENSE_API_KEY:-demo}", "inspector": "npx @modelcontextprotocol/inspector", "watch": "tsc --watch", "prepublishOnly": "npm run build" }, "keywords": [ "typesense", "search", "model-context-protocol", "ai", "llm", "mcp", "claude" ], "author": "Suhail", "license": "MIT", "description": "A Model Context Protocol server that provides access to Typesense search capabilities", "repository": { "type": "git", "url": "git+https://github.com/suhail-ak-s/mcp-typesense-server.git" }, "engines": { "node": ">=16" }, "bin": { "typesense-mcp-server": "bin.js" }, "files": [ "dist/", "bin.js", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "devDependencies": { "@types/node": "^22.13.5", "ts-node": "^10.9.2", "tsx": "^4.19.3", "typescript": "^5.7.3" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.6.0", "typesense": "^2.0.3" } }