feat: MVP implementation — MCP server, partner one-pager, legal docs

Code (code/):
- TypeScript MCP server with 5 tools (business info, hours, services, booking, related)
- PostgreSQL schema with pilot business seed data
- /.well-known/mcp-server manifest generator
- Railway deployment config (Dockerfile, railway.json)
- Multi-tenant gateway placeholder

GTM (docs/gtm/):
- Partner One-Pager: agency sales asset with economics, onboarding, competitive comparison

Legal (docs/legal/):
- Data Flow & Privacy: data collection, storage, sharing, GDPR/CCPA commitments
- Partnership Agreement Skeleton: template for agency/CoC partnerships
- IP Notes: well-known convention positioning, telemetry ownership, open-source strategy
This commit is contained in:
Ty
2026-07-16 14:10:21 -07:00
parent 4def4d0726
commit 2be10ce42c
22 changed files with 3419 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
{
"name": "geolocal-io-mcp",
"version": "0.1.0",
"description": "Multi-tenant MCP server for geolocal.io \u2014 AI-native local business discovery",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"seed": "tsx src/db/seed.ts",
"test": "tsx --test tests/*.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fastify": "^5.0.0",
"pg": "^8.13.0",
"dotenv": "^16.4.0",
"zod": "^3.24.0"
},
"devDependencies": {
"tsx": "^4.0.0",
"typescript": "^5.7.0",
"@types/pg": "^8.11.0",
"@types/node": "^22.0.0"
}
}