package.json•844 B
{
"name": "mcp-ollama-consult",
"version": "1.0.0",
"description": "MCP server for consulting with Ollama models",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"demo": "node dist/demo-client.js",
"dev:demo": "ts-node src/demo-client.ts",
"test": "vitest run --reporter default",
"test:watch": "vitest",
"ci": "npm install && npm run build && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0",
"zod": "^3.22.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": ["mcp", "ollama", "ai", "consultation"],
"author": "Atomic-Germ",
"license": "MIT"
}