An AI-driven dispute resolution platform built with React frontend and AWS CDK Lambda backend. GrappleAI advocates for consumers in post-purchase disputes using autonomous agents and the Model Context Protocol (MCP).
Get up and running in 5 minutes:
# Frontend
cd app && npm install && npm run dev
# Backend (separate terminal)
cd backend && npm install && npm run cdk:deploySee QUICKSTART.md for detailed instructions.
- Quick Start Guide - Get running in 5 minutes
- Complete Setup Guide - Detailed setup instructions
- Project Overview - Architecture and features
- AI-DLC Methodology - AI-Driven Development Life Cycle
- Traditional SDLC - SDLC vs AIDLC comparison
- GrappleAI Concept - Problem statement and vision
- AI-DLC Details - Active Defense Layer for Consumers
- Frontend README - React app details
- Backend README - AWS CDK backend details
React Frontend (Vite)
β HTTP/REST
API Gateway (AWS)
β
Lambda Function (Node.js 20.x)
ββ MCP Server
ββ Request Handler
ββ Business Logic
β
βββββ΄ββββ¬βββββββββ
β β β
DynamoDB S3 DynamoDB
Disputes Evidence Negotiations
- Dispute Management - Create, track, and manage disputes
- Evidence Verification - Automatic confidence scoring and secure storage
- Autonomous Negotiation - AI-driven negotiation with sellers
- Consumer Rights - Consumer Protection Act 2019 integration
- Dashboard Analytics - Real-time dispute statistics
- Multi-language Support - Vernacular interface support
- React 18 + TypeScript
- Vite (build tool)
- Tailwind CSS (styling)
- Zustand (state management)
- React Router (navigation)
- AWS CDK (infrastructure as code)
- AWS Lambda (serverless compute)
- AWS API Gateway (REST API)
- AWS DynamoDB (database)
- AWS S3 (storage)
- Node.js 20.x
grappleai/
βββ app/ # React frontend
β βββ src/
β β βββ components/ # React components
β β βββ pages/ # Page components
β β βββ services/ # API client
β β βββ store/ # State management
β β βββ types/ # TypeScript types
β βββ package.json
β
βββ backend/ # AWS CDK backend
β βββ lib/
β β βββ cdk/ # CDK stack
β β βββ lambda/ # Lambda handler
β β βββ mcp/ # MCP server
β β βββ types/ # TypeScript types
β βββ package.json
β
βββ SDLC to AIDLC/ # Methodology docs
β βββ AIDLC.md
β βββ SDLC.md
β
βββ AI-DLC/ # AI-DLC documentation
β βββ AI-DLC.md
β
βββ QUICKSTART.md # 5-minute setup
βββ SETUP.md # Complete setup guide
βββ PROJECT_OVERVIEW.md # Architecture overview
βββ README.md # This file
- Node.js 18+
- AWS Account
- AWS CLI configured
cd app
npm install
npm run devVisit: http://localhost:5173
cd backend
npm install
npm run cdk:deployUpdate app/.env.local:
VITE_API_URL=https://your-api-endpoint.com/api
POST /disputes- Create disputeGET /disputes- List disputesGET /disputes/{id}- Get dispute detailsPUT /disputes/{id}- Update dispute
POST /evidence/upload- Upload evidenceGET /evidence/{id}- Get evidencePOST /evidence/{id}/verify- Verify evidence
POST /negotiation/initiate- Start negotiationGET /negotiation/{txId}- Get status
The backend implements these MCP tools:
- secureEvidence - Clutch evidence securely with confidence scoring
- negotiateRefund - Initiate autonomous negotiation
- generateDisputeNotice - Generate formal dispute notice
- verifyConsumerRights - Verify Consumer Protection Act rights
- Statistics - Total disputes, resolved, in-progress, success rate
- Dispute List - View all disputes with status indicators
- Create Dispute - File new disputes with evidence
- Real-time Updates - Track dispute progress
- JWT/OAuth2 ready
- Input validation
- IAM roles with least privilege
- Encryption at rest and in transit
- CORS enabled
- API rate limiting ready
- Frontend: ~50KB gzipped
- Lambda: 512MB memory, 30s timeout
- DynamoDB: On-demand billing
- API: <100ms response time
Monthly (small-medium usage):
- Lambda: $0.20 per 1M requests
- DynamoDB: $1.25 per 100 write units
- S3: $0.023 per GB
- API Gateway: $3.50 per 1M requests
- Total: ~$50-200/month
npm run dev # Start dev server
npm run build # Build for production
npm run lint # Run linter
npm run type-check # Check typesnpm run build # Compile TypeScript
npm run cdk:deploy # Deploy to AWS
npm run cdk:destroy # Destroy stack
npm run cdk:diff # Preview changes- Vercel:
vercel deploy - Netlify:
netlify deploy --prod --dir=dist - AWS S3:
aws s3 sync dist/ s3://bucket/
cd backend
npm run cdk:deploy- Create feature branch
- Make changes
- Run linter and type-check
- Submit PR
MIT
GrappleAI is building the trust layer for India's digital economy. By combining AI, law, and technology, we're creating an active advocate for every consumerβensuring that disputes are resolved fairly, quickly, and in the consumer's preferred language.
Ready to build? Start with QUICKSTART.md!
GrappleAI - Active Defense Layer for Consumers Building trust in India's digital economy, one dispute at a time.