WYGIWYH API MCP Server
A production-ready Model Context Protocol (MCP) server that provides a universal interface to the WYGIWYH expense tracking API. The server dynamically generates 75 MCP tools from an OpenAPI specification, enabling AI agents and automation platforms like n8n to interact with the expense tracking system through standardized tool calls.
Original repo of WYGIWYH
- π Dynamic Tool Generation - Automatically generates 75 MCP tools from OpenAPI specification
- π Secure Authentication - Bearer token authentication for MCP endpoints + Basic Auth for API access
- π HTTP Streamable Transport - Full compatibility with n8n and other MCP clients
- π³ Production-Ready Docker - Optimized multi-stage build with health checks
- β‘ Async/Await - Efficient non-blocking API communication
- π Comprehensive API Coverage - All WYGIWYH API endpoints exposed as tools
- Automate expense tracking workflows with n8n
- Build AI assistants that manage financial data
- Create custom integrations with WYGIWYH API
- Implement voice-controlled expense logging
- Develop automated reporting systems
- Docker & Docker Compose
- WYGIWYH API credentials
- MCP Bearer token
-
Clone the repository
git clone https://github.com/ReNewator/MCP-WYGIWYH.git cd MCP-WYGIWYH -
Configure environment
cp .env.example .env # Edit .env with your credentials # Don't forget change you WYGIWYH url in server.py
-
Deploy with Docker
./deploy.sh
Or manually:
docker-compose up -d
-
Verify deployment
curl http://localhost:5000/health
Create a .env file with the following variables:
# WYGIWYH API Credentials
API_USERNAME=your_email@example.com
API_PASSWORD=your_password_here
# MCP Server Authentication
MCP_TOKEN=your_mcp_bearer_token_hereConfigure the n8n MCP Client node:
- Endpoint:
http://your-server:5000/ - Transport: HTTP Streamable
- Authentication: Header Auth
- Name:
Authorization - Value:
Bearer YOUR_MCP_TOKEN
- Name:
The server exposes 75 MCP tools organized by category:
account-groups_*- Account group operations (6 tools)accounts_*- Account CRUD operations (6 tools)
transactions_*- Transaction operations (6 tools)recurring-transactions_*- Recurring transaction management (6 tools)installment-plans_*- Installment plan handling (6 tools)
categories_*- Expense category management (6 tools)tags_*- Transaction tagging (6 tools)currencies_*- Currency management (6 tools)exchange-rates_*- Exchange rate operations (6 tools)
dca_*- Dollar-cost averaging strategies (15 tools)entities_*- Entity management (6 tools)
Use the tools/list method to see all available tools with their schemas.
.
βββ mcp_sse_server.py # Main MCP server with HTTP Streamable
βββ server.py # Core MCP implementation
βββ test_server.py # Validation script
βββ Dockerfile # Production Docker image
βββ docker-compose.yml # Docker Compose config
βββ deploy.sh # Automated deployment
βββ requirements.txt # Python dependencies
βββ DEPLOYMENT.md # Detailed deployment guide
βββ PROJECT.md # Technical documentation
βββ attached_assets/
βββ WYGIWYH API.yaml # OpenAPI specification
# Build and run
docker-compose up -d
# View logs
docker-compose logs -f
# Stop server
docker-compose downapiVersion: apps/v1
kind: Deployment
metadata:
name: wygiwyh-mcp-server
spec:
replicas: 2
template:
spec:
containers:
- name: mcp-server
image: wygiwyh-mcp-server:latest
ports:
- containerPort: 5000
env:
- name: API_USERNAME
valueFrom:
secretKeyRef:
name: wygiwyh-secrets
key: api-username- AWS ECS/Fargate - Use the Docker image with environment variables
- Google Cloud Run - Deploy as container with secrets management
- Azure Container Instances - Direct deployment from Docker Hub
See DEPLOYMENT.md for detailed cloud deployment instructions.
Run the validation script to verify the setup:
python test_server.pyThis displays all 75 generated MCP tools grouped by category.
POST /- MCP JSON-RPC endpoint (requires Bearer token)GET /health- Health check (no authentication)
- β Bearer token authentication for MCP access
- β Basic Auth for WYGIWYH API requests
- β Non-root container user
- β Secrets managed via environment variables
- β No exposed credentials in logs
The server automatically generates MCP tools from the OpenAPI specification:
- Parses WYGIWYH API OpenAPI YAML
- Converts schemas to JSON Schema format
- Creates Tool objects for all operations
- Handles
allOfmerging for complex types - Exposes tools via MCP protocol
Benefits:
- Single source of truth (OpenAPI spec)
- Automatic updates when API changes
- Zero manual endpoint definitions
- Consistent tool schemas
βββββββββββββββ Bearer Token βββββββββββββββ
β n8n/MCP β ββββββββββββββββββ> β MCP Server β
β Client β β β
βββββββββββββββ βββββββββββββββ
β
β Basic Auth
βΌ
βββββββββββββββ
β WYGIWYH β
β API β
βββββββββββββββ
# Check logs
docker-compose logs
# Verify environment
cat .env- Ensure
API_USERNAMEis your WYGIWYH email - Verify
API_PASSWORDis correct - Check
MCP_TOKENmatches client configuration
# Check server status
docker-compose ps
# Test health endpoint
curl http://localhost:5000/health- DEPLOYMENT.md - Comprehensive deployment guide
- PROJECT.md - Technical architecture documentation
Contributions are welcome! Please follow these guidelines:
- Fork the repository
- Create a feature branch
- Make your changes with tests
- Submit a pull request
Copyright (c) 2025 ReNewator.com. All rights reserved.
For issues and questions:
- Open an issue on GitHub
- Check existing documentation
- Review deployment logs
Built with β€οΈ by ReNewator.com