Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A standalone MCP server that provides AI tools by proxying requests to the FTC Platform's REST API, enabling tasks like fetching event applications, evaluations, and scoring criteria.

README.md

FTC Platform MCP Server

A standalone Model Context Protocol (MCP) server for the FTC Platform that provides AI tools by proxying requests to the main platform's REST API.

Architecture

This MCP server runs independently from the main Next.js application and communicates with it via HTTP API calls:

┌─────────────────┐    ┌─────────────────┐    ┌─────────────────┐
│   Claude AI     │───▶│  MCP Server     │───▶│  Vercel API     │
│   (MCP Client)  │    │  (This App)     │    │  (ftc-platform) │
└─────────────────┘    └─────────────────┘    └─────────────────┘

Why Separate Deployment?

  • Vercel Limitations: Vercel Functions don't support WebSocket servers required for MCP
  • Long-lived Connections: MCP sessions are persistent and bidirectional
  • Independent Scaling: MCP server can scale separately from the main app
  • Clean Architecture: Separation of concerns between web app and AI tools

Available Tools

  1. test_connection - Verify MCP server and API connectivity
  2. get_event_applications - Fetch all applications for an event with complete data
  3. get_event_evaluations - Get completed evaluations with scores and statistics
  4. get_evaluation_criteria - Get scoring criteria categorized for AI understanding
  5. get_application_questions - Get application question structure and metadata

Environment Variables

Create a .env file from .env.example:

cp .env.example .env

Required variables:

  • VERCEL_API_BASE_URL - Base URL of your deployed FTC Platform API
  • MASTRA_API_KEY - API key for authenticating with the Vercel API

Development

Prerequisites

  • Node.js 20+
  • Access to the FTC Platform API endpoints

Local Development

  1. Install dependencies:
npm install
  1. Set up environment variables:
cp .env.example .env
# Edit .env with your actual values
  1. Start development server:
npm run dev
  1. Test the connection:
# In another terminal, test via stdio
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}' | npm run dev

Deployment

Fly.io (Recommended)

  1. Install Fly CLI:
curl -L https://fly.io/install.sh | sh
  1. Login and create app:
fly auth login
fly apps create ftc-platform-mcp
  1. Set environment variables:
fly secrets set VERCEL_API_BASE_URL="https://your-app.vercel.app/api/mastra"
fly secrets set MASTRA_API_KEY="your-secret-key"
  1. Deploy:
fly deploy

Docker (Alternative)

# Build
docker build -t ftc-platform-mcp .

# Run locally
docker run -p 3001:3001 \
  -e VERCEL_API_BASE_URL="https://your-app.vercel.app/api/mastra" \
  -e MASTRA_API_KEY="your-secret-key" \
  ftc-platform-mcp

Claude Configuration

After deploying, configure Claude to use your MCP server:

// .mcp.json
{
  "mcpServers": {
    "ftc-platform": {
      "type": "stdio",
      "command": "ssh",
      "args": [
        "your-server.fly.dev",
        "node",
        "/app/dist/server.js"
      ],
      "env": {
        "NODE_ENV": "production"
      }
    }
  }
}

API Authentication

The MCP server authenticates with the Vercel API using the same MASTRA_API_KEY that the main platform uses. This provides:

  • Reuse of existing auth - No changes needed to Vercel API
  • Server-to-server security - API key is stored securely on the MCP server
  • Access control - Same permissions as the main platform

Project Structure

src/
├── server.ts           # Main MCP server implementation
├── lib/
│   └── api-client.ts   # HTTP client for Vercel API calls
└── types/
    └── index.ts        # TypeScript type definitions

# Deployment configs
├── Dockerfile          # Docker container definition
├── fly.toml           # Fly.io deployment config
└── README.md          # This file

Monitoring

Health Checks

  • HTTP endpoint: http://your-app:3001/health
  • Fly.io automatically monitors and restarts unhealthy instances

Logs

# Fly.io logs
fly logs

# Docker logs
docker logs container-id

Troubleshooting

Common Issues

  1. Connection Failed
  • Check VERCEL_API_BASE_URL is correct and accessible
  • Verify MASTRA_API_KEY is valid
  1. Tool Execution Errors
  • Check Vercel API is responding correctly
  • Verify eventId parameters are valid UUIDs
  1. MCP Client Issues
  • Ensure Claude has the correct MCP server configuration
  • Check stdio communication is working properly

Debug Mode

Set environment variable for verbose logging: ``bash NODE_ENV=development npm run dev ``

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.