Skip to main content
Glama
kambleaa007

GrappleAI MCP Server

by kambleaa007

GrappleAI - Aktive Verteidigungsschicht für Verbraucher

Eine KI-gesteuerte Streitbeilegungsplattform, die mit einem React-Frontend und einem AWS-CDK-Lambda-Backend aufgebaut ist. GrappleAI setzt sich für Verbraucher in Streitigkeiten nach dem Kauf ein, unter Verwendung autonomer Agenten und des Model Context Protocol (MCP).

🚀 Schnellstart

In 5 Minuten startklar:

# Frontend
cd app && npm install && npm run dev

# Backend (separate terminal)
cd backend && npm install && npm run cdk:deploy

Siehe QUICKSTART.md für detaillierte Anweisungen.

Related MCP server: korean-privacy-law-mcp

📚 Dokumentation

Erste Schritte

Methodik & Vision

Komponentendokumentation

🏗️ Architektur

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

✨ Funktionen

  • Streitfallverwaltung - Streitfälle erstellen, verfolgen und verwalten

  • Beweisverifizierung - Automatische Konfidenzbewertung und sichere Speicherung

  • Autonome Verhandlung - KI-gesteuerte Verhandlung mit Verkäufern

  • Verbraucherrechte - Integration des Consumer Protection Act 2019

  • Dashboard-Analysen - Echtzeit-Statistiken zu Streitfällen

  • Mehrsprachige Unterstützung - Unterstützung für regionale Sprachen

🛠️ Technologie-Stack

Frontend

  • React 18 + TypeScript

  • Vite (Build-Tool)

  • Tailwind CSS (Styling)

  • Zustand (Zustandsverwaltung)

  • React Router (Navigation)

Backend

  • AWS CDK (Infrastruktur als Code)

  • AWS Lambda (serverloses Rechnen)

  • AWS API Gateway (REST-API)

  • AWS DynamoDB (Datenbank)

  • AWS S3 (Speicher)

  • Node.js 20.x

📁 Projektstruktur

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

🚀 Erste Schritte

Voraussetzungen

  • Node.js 18+

  • AWS-Konto

  • AWS CLI konfiguriert

Frontend-Einrichtung

cd app
npm install
npm run dev

Besuchen Sie: http://localhost:5173

Backend-Einrichtung

cd backend
npm install
npm run cdk:deploy

Frontend mit Backend verbinden

Aktualisieren Sie app/.env.local:

VITE_API_URL=https://your-api-endpoint.com/api

📖 API-Endpunkte

Streitfälle

  • POST /disputes - Streitfall erstellen

  • GET /disputes - Streitfälle auflisten

  • GET /disputes/{id} - Streitfalldetails abrufen

  • PUT /disputes/{id} - Streitfall aktualisieren

Beweise

  • POST /evidence/upload - Beweise hochladen

  • GET /evidence/{id} - Beweise abrufen

  • POST /evidence/{id}/verify - Beweise verifizieren

Verhandlung

  • POST /negotiation/initiate - Verhandlung starten

  • GET /negotiation/{txId} - Status abrufen

🔧 MCP-Server-Tools

Das Backend implementiert diese MCP-Tools:

  1. secureEvidence - Beweise sicher mit Konfidenzbewertung sichern

  2. negotiateRefund - Autonome Verhandlung einleiten

  3. generateDisputeNotice - Formelle Streitfallmitteilung erstellen

  4. verifyConsumerRights - Rechte nach dem Consumer Protection Act überprüfen

📊 Dashboard-Funktionen

  • Statistiken - Gesamtstreitfälle, erledigt, in Bearbeitung, Erfolgsquote

  • Streitfallliste - Alle Streitfälle mit Statusanzeigen anzeigen

  • Streitfall erstellen - Neue Streitfälle mit Beweisen einreichen

  • Echtzeit-Updates - Streitfallfortschritt verfolgen

🔐 Sicherheit

  • JWT/OAuth2 ready

  • Eingabevalidierung

  • IAM-Rollen mit minimalen Berechtigungen

  • Verschlüsselung im Ruhezustand und während der Übertragung

  • CORS aktiviert

  • API-Ratenbegrenzung bereit

📈 Leistung

  • Frontend: ~50KB gzipped

  • Lambda: 512MB memory, 30s timeout

  • DynamoDB: On-Demand-Abrechnung

  • API: <100ms Antwortzeit

💰 Kostenschätzung

Monatlich (kleine bis mittlere Nutzung):

  • Lambda: 0,20 $ pro 1 Mio. Anfragen

  • DynamoDB: 1,25 $ pro 100 Schreibeinheiten

  • S3: 0,023 $ pro GB

  • API Gateway: 3,50 $ pro 1 Mio. Anfragen

  • Gesamt: ~50-200 $/Monat

🧪 Entwicklung

Frontend-Befehle

npm run dev          # Start dev server
npm run build        # Build for production
npm run lint         # Run linter
npm run type-check   # Check types

Backend-Befehle

npm run build        # Compile TypeScript
npm run cdk:deploy   # Deploy to AWS
npm run cdk:destroy  # Destroy stack
npm run cdk:diff     # Preview changes

🚢 Bereitstellung

Frontend

  • Vercel: vercel deploy

  • Netlify: netlify deploy --prod --dir=dist

  • AWS S3: aws s3 sync dist/ s3://bucket/

Backend

cd backend
npm run cdk:deploy

📚 Mehr erfahren

🤝 Mitwirken

  1. Feature-Branch erstellen

  2. Änderungen vornehmen

  3. Linter und Typprüfung ausführen

  4. PR einreichen

📄 Lizenz

MIT

🎯 Vision

GrappleAI baut die Vertrauensschicht für Indiens digitale Wirtschaft. Durch die Kombination von KI, Recht und Technologie schaffen wir einen aktiven Fürsprecher für jeden Verbraucher – und stellen sicher, dass Streitfälle fair, schnell und in der bevorzugten Sprache des Verbrauchers gelöst werden.


Bereit zu bauen? Starten Sie mit QUICKSTART.md!

GrappleAI - Active Defense Layer for Consumers Vertrauen in Indiens digitale Wirtschaft aufbauen, ein Streitfall nach dem anderen.

A
license - permissive license
Not graded
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    C
    quality
    B
    maintenance
    Enables searching, comparing, and analyzing Korean laws and public institution regulations through natural language, integrating 110 MCP tools covering statutes, precedents, and internal rules.
    100
    12
    15
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    Enables natural language interaction with the Korean Personal Information Protection Act (PIPA) through 37 MCP tools that search, compare, analyze, and verify legal texts, official guidelines, and consulting cases from authoritative sources.
    37
    11
    4
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Provides automated EU AI Act compliance tools, including risk classification, role determination, transparency disclosures, content watermarking, deepfake labeling, and security threat detection.
    16
    31
    Apache 2.0
  • A
    license
    B
    quality
    B
    maintenance
    Enables Korean legal document processing, case analysis, and consultation using MCP, with OCR parsing, fact extraction, claim identification, subsumption grid, legal API verification, and document drafting.
    24
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kambleaa007/GrappleAI'

If you have feedback or need assistance with the MCP directory API, please join our Discord server