Skip to main content
Glama

AutoDev Codebase MCP Server

by anrgct
cache.ts851 B
export interface ICacheManager { /** * Initializes the cache manager by loading the cache file */ initialize(): Promise<void> /** * Clears the cache file by writing an empty object to it */ clearCacheFile(): Promise<void> /** * Gets the hash for a file path * @param filePath Path to the file * @returns The hash for the file or undefined if not found */ getHash(filePath: string): string | undefined /** * Updates the hash for a file path * @param filePath Path to the file * @param hash New hash value */ updateHash(filePath: string, hash: string): void /** * Deletes the hash for a file path * @param filePath Path to the file */ deleteHash(filePath: string): void /** * Gets a copy of all file hashes * @returns A copy of the file hashes record */ getAllHashes(): Record<string, string> }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/anrgct/autodev-codebase'

If you have feedback or need assistance with the MCP directory API, please join our Discord server