File Finder MCP Server

{ "name": "file-finder-mcp", "version": "1.0.0", "description": "MCP server for file finding functionality and speech-to-text with HTTP server support", "main": "build/index.js", "type": "module", "scripts": { "build": "tsc", "start": "node build/index.js", "start:http": "node build/index-http.js", "start:whisper": "node build/whisper-index.js", "start:whisper:http": "node build/whisper-index-http.js", "dev": "tsc && node build/index.js", "dev:http": "tsc && node build/index-http.js", "dev:whisper": "tsc && node build/whisper-index.js", "dev:whisper:http": "tsc && node build/whisper-index-http.js", "start:python": "python main.py", "start:whisper:python": "python whisper_server.py" }, "keywords": [ "mcp", "file-finder", "whisper", "speech-to-text" ], "author": "", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "latest", "node-fetch": "^3.3.2" }, "devDependencies": { "@types/node": "^20.17.19", "typescript": "^5.7.3" } }