Ollama MCP Database Assistant

{ "name": "ollama-mcp-db", "version": "1.0.0", "description": "An interactive chat interface that combines Ollama's LLM capabilities with PostgreSQL database access through the Model Context Protocol (MCP).", "type": "module", "main": "dist/index.js", "scripts": { "start": "tsx src/index.ts", "build": "tsc", "serve": "node dist/index.js" }, "keywords": [ "ollama", "mcp", "ai", "llm", "postgres", "sql" ], "author": "", "license": "MIT", "devDependencies": { "@types/node": "^20.0.0", "ts-node": "^10.9.2", "tsx": "^4.19.2", "typescript": "^5.7.2" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "dotenv": "^16.4.7", "ollama": "^0.5.11" } }