UNPKG

@knath2000/codebase-indexing-mcp

Version:

MCP server for codebase indexing with Voyage AI embeddings and Qdrant vector storage

7 lines (6 loc) 309 B
import { Request, Response, NextFunction } from 'express'; /** * Simple token-bucket rate limiter keyed by `X-Workspace` header. * Exposes 429 with Retry-After when exhausted. */ export declare function rateLimit(req: Request, res: Response, next: NextFunction): void | Response<any, Record<string, any>>;