Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Vectorize
Claim
Official
by
vectorize-io
npm
GitHub
Search
Research & Data
JavaScript
MIT License
15
17
Apple
Linux
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
vectorize-mcp-server
.github
src
.eslintrc.json
.gitignore
LICENSE
package.json
package-lock.json
.prettierrc
README.md
tsconfig.json
{ "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "env": { "node": true, "es2022": true }, "parserOptions": { "ecmaVersion": 2022, "sourceType": "module", "project": "./tsconfig.json" }, "rules": { "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-unused-vars": [ "error", { "argsIgnorePattern": "^_" } ] }, "overrides": [ { "files": ["**/*.test.ts"], "rules": { "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-explicit-any": "off" } } ] }