Next.js MCP Server Template

Next.js MCP Server Template

A template for building MCP servers in Next.js applications using the Vercel MCP Adapter. Provides a foundation for adding custom tools, prompts, and resources to any Next.js project with deployment support on Vercel.

Category
访问服务器

README

Xero MCP Integration Server

Build Status License: MIT Node.js Version TypeScript Next.js

Connect AI assistants to Xero accounting data seamlessly

Transform your Xero workflow with AI-powered insights and automation. This server enables AI assistants like Claude, ChatGPT, or any Model Context Protocol (MCP) compatible AI to securely access and analyze your Xero accounting data.

Features

  • Secure OAuth 2.0 Integration - Enterprise-grade authentication with Xero
  • AI Assistant Compatible - Works with Claude, ChatGPT, and other MCP clients
  • Real-time Data Access - Live synchronization with Xero accounting data
  • Enterprise Security - Encrypted tokens, CSRF protection, and audit logging
  • Comprehensive API Coverage - Invoices, contacts, accounts, payments, and more
  • Production Ready - Optimized for Vercel deployment with monitoring

What You Can Do

Instant Financial Insights - Ask "What's my cash flow trend this quarter?" Automated Reporting - Generate reports with natural language requests Smart Data Entry - AI-assisted invoice and transaction management Real-time Alerts - Get notified about important financial events Multi-tenant Support - Connect multiple Xero organizations

Quick Start

Get up and running in 3 minutes:

1. Clone & Install

git clone https://github.com/hiltonbrown/xero-mcp-with-next-js.git
cd xero-mcp-with-next-js
npm install

2. Configure Environment

cp .env.example .env.local
# Edit .env.local with your Xero credentials (see Configuration section)

3. Start Development Server

npm run dev

Visit http://localhost:3000 and follow the OAuth flow to connect your Xero account!

📋 Table of Contents

Prerequisites

Before you begin, ensure you have:

  • Node.js 18+ - Download here
  • Xero Developer Account - Sign up
  • PostgreSQL Database - Local or cloud (Supabase, Railway, etc.)
  • Vercel Account (optional) - For deployment

Installation

Option 1: Local Development (Recommended)

# Clone the repository
git clone https://github.com/hiltonbrown/xero-mcp-with-next-js.git
cd xero-mcp-with-next-js

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env.local

# Generate Prisma client
npx prisma generate

# Start development server
npm run dev

Option 2: Using Docker

# Clone and start with Docker
git clone https://github.com/hiltonbrown/xero-mcp-with-next-js.git
cd xero-mcp-with-next-js

# Start all services
docker-compose up -d

# Run database migrations
docker-compose exec app npx prisma migrate deploy

Option 3: Vercel One-Click Deploy

Deploy with Vercel

Configuration

Environment Variables

Create a .env.local file in the project root:

# Database Configuration
DATABASE_URL="postgresql://username:password@localhost:5432/xero_mcp"

# Xero API Configuration
XERO_CLIENT_ID="your-xero-client-id"
XERO_CLIENT_SECRET="your-xero-client-secret"
XERO_REDIRECT_URI="http://localhost:3000/api/auth/callback"

# Security Configuration
JWT_SECRET="your-256-bit-secret-here"
ENCRYPTION_KEY="your-32-character-encryption-key"

# Optional: Redis for production caching
REDIS_URL="redis://localhost:6379"

# Optional: Monitoring and logging
SENTRY_DSN="your-sentry-dsn-here"

Xero Developer Setup

  1. Create Xero App

  2. Configure OAuth 2.0

    • Set redirect URI to: http://localhost:3000/api/auth/callback
    • Copy Client ID and Client Secret to your .env.local
  3. Set Permissions

    • Enable required scopes: accounting.transactions, accounting.contacts, etc.

Database Setup

# Install PostgreSQL locally or use a cloud provider
# Then run migrations:
npx prisma migrate deploy

# Optional: Seed with test data
npx prisma db seed

Usage

Connecting AI Assistants

Claude Desktop Integration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "xero": {
      "command": "node",
      "args": ["path/to/your/mcp/server"],
      "env": {
        "XERO_CLIENT_ID": "your-client-id",
        "DATABASE_URL": "your-database-url"
      }
    }
  }
}

ChatGPT Integration

Configure the MCP server URL in your ChatGPT settings:

// Example MCP client connection
const mcpClient = await connectToMCPServer({
  url: 'http://localhost:3000/api/mcp',
  sessionId: 'your-session-id'
});

Example Queries

Once connected, you can ask your AI assistant:

  • "Show me my outstanding invoices over $500"
  • "What's my total revenue for Q1 2024?"
  • "List all customers who haven't paid in 30 days"
  • "Create a summary of my cash flow this month"
  • "Find transactions with 'Office Supplies' in the description"

API Endpoints

Authentication

# Initiate OAuth flow
GET /api/auth/xero?accountId=123

# OAuth callback handler
GET /api/auth/callback?code=...&state=...

MCP Server

# MCP protocol endpoint
POST /api/mcp
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/list",
  "params": {}
}

Health & Monitoring

# Health check
GET /api/health

# Detailed health check
POST /api/health

Webhooks

# Xero webhook receiver
POST /api/webhooks/xero
X-Xero-Signature: <signature>

📚 API Reference

MCP Tools Available

Tool Description Parameters
list-accounts Chart of accounts tenantId, where, orderBy
list-contacts Customer/supplier contacts tenantId, where, page, pageSize
list-invoices Sales invoices tenantId, status, dateFrom, dateTo
list-items Inventory items tenantId, where
list-payments Payment records tenantId, status, dateFrom, dateTo
create-contact New contact tenantId, name, email, contactType
create-invoice New invoice tenantId, contactId, date, lineItems
update-contact Update contact tenantId, contactId, name, email

Response Format

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "Found 5 accounts"
      },
      {
        "type": "json",
        "json": [...]
      }
    ]
  }
}

Testing

# Run all tests
npm test

# Run with coverage
npm run test:coverage

# Run specific test types
npm run test:unit      # Unit tests
npm run test:api       # API tests
npm run test:integration # Integration tests

# Run tests in watch mode
npm run test:watch

Test Coverage

  • Unit Tests: Core functions and utilities
  • API Tests: HTTP endpoints and responses
  • Integration Tests: End-to-end OAuth and MCP flows
  • Component Tests: React component testing

Deployment

Vercel Deployment

  1. Connect Repository

    # Vercel will automatically detect Next.js
    vercel --prod
    
  2. Environment Variables

    • Add all environment variables in Vercel dashboard
    • Enable "Fluid Compute" for better performance
    • Set function timeout to 30 seconds for MCP operations
  3. Database

    • Use Vercel Postgres or connect external PostgreSQL
    • Run migrations: npx prisma migrate deploy

Docker Deployment

# Build and run
docker build -t xero-mcp .
docker run -p 3000:3000 xero-mcp

Production Checklist

  • [ ] Environment variables configured
  • [ ] Database migrations run
  • [ ] SSL certificates enabled
  • [ ] Monitoring and alerting set up
  • [ ] Backup procedures documented
  • [ ] Load testing completed

Contributing

We welcome contributions! Please see our Contributing Guide for details.

Development Setup

  1. Fork & Clone

    git clone https://github.com/your-username/xero-mcp-with-next-js.git
    cd xero-mcp-with-next-js
    
  2. Install Dependencies

    npm install
    
  3. Run Tests

    npm test
    
  4. Start Development

    npm run dev
    

Code Standards

  • TypeScript: Strict type checking enabled
  • ESLint: Code linting with Next.js rules
  • Prettier: Automated code formatting
  • Testing: Minimum 80% code coverage required

Pull Request Process

  1. Create a feature branch: git checkout -b feature/amazing-feature
  2. Write tests for your changes
  3. Ensure all tests pass: npm test
  4. Update documentation if needed
  5. Submit a pull request with a clear description

Commit Message Format

feat: add new MCP tool for bank reconciliation
fix: resolve OAuth token refresh issue
docs: update API documentation
test: add integration tests for webhook handling
refactor: improve error handling in auth module

Troubleshooting

Common Issues

OAuth Connection Failed

# Check Xero app configuration
# Verify redirect URI matches: http://localhost:3000/api/auth/callback
# Ensure Xero app has correct scopes enabled

Database Connection Error

# Verify DATABASE_URL is correct
# Check PostgreSQL is running
# Run: npx prisma migrate deploy

MCP Tool Not Working

# Check session is valid
# Verify Xero connection is active
# Check API permissions in Xero

Build Errors

# Clear Next.js cache
rm -rf .next

# Reinstall dependencies
rm -rf node_modules package-lock.json
npm install

Debug Mode

# Enable debug logging
DEBUG=* npm run dev

# Check health endpoint
curl http://localhost:3000/api/health

Getting Help

Security

Data Protection

  • Encrypted Tokens: All sensitive data encrypted with AES-256
  • Secure Sessions: JWT-based authentication with expiration
  • CSRF Protection: OAuth state parameter validation
  • Input Validation: Comprehensive request sanitization

Best Practices

  • Environment Variables: Never commit secrets to version control
  • HTTPS Only: Always use HTTPS in production
  • Regular Updates: Keep dependencies updated for security patches
  • Access Control: Implement proper authorization checks

Security Reporting

If you discover a security vulnerability, please email security@example.com instead of creating a public issue.

Roadmap

Version 2.0 (Coming Soon)

  • [ ] Advanced reporting tools
  • [ ] Bulk operations support
  • [ ] Real-time webhook notifications
  • [ ] Multi-organization support
  • [ ] Advanced analytics dashboard

Version 1.5 (Current)

  • [x] Basic MCP tool implementation
  • [x] OAuth 2.0 integration
  • [x] Webhook support
  • [x] Comprehensive testing suite
  • [x] Production deployment ready

Acknowledgments

  • Xero API - For providing excellent accounting APIs
  • Model Context Protocol - For the AI assistant integration standard
  • Next.js Community - For the amazing React framework
  • Vercel - For the best deployment platform

License

This project is licensed under the MIT License - see the LICENSE file for details.


Made with ❤️ for Accountants, Bookkeepers and AI enthusiasts

⭐ Star us on GitHub • [📖 Documentation](Still to do) • 🐛 Report Issues

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选