The data MCP is purely read-only analytics, so rename the package (@lilith/quinn-data-mcp → @lilith/quinn-analytics-mcp), bin, server name, logger prefix, and the .mcp.json client key to match. The systemd deploy instance key stays `data` (quinn-mcp@data, black:3914) — noted in the deploy script and mcp-servers.md. Updates all doc/content references (nyc-tour SEO, twitter handoff, deploy comments).
26 lines
547 B
JSON
26 lines
547 B
JSON
{
|
|
"name": "@lilith/quinn-analytics-mcp",
|
|
"version": "0.2.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./src/index.ts",
|
|
"bin": {
|
|
"quinn-analytics-mcp": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@lilith/mcp-common": "^1.1.0",
|
|
"@modelcontextprotocol/sdk": "1.26.0",
|
|
"postgres": "^3.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"exports": {
|
|
".": "./src/index.ts",
|
|
"./client": "./src/client.ts"
|
|
}
|
|
}
|