Skip to main content
Glama

Spond MCP Server

An MCP (Model Context Protocol) server for fetching London Desperados CC events from Spond. Built with TypeScript and deployable to Firebase Cloud Functions.

Features

  • get_desperados_events: Fetch all upcoming events for London Desperados CC for the next year

Related MCP server: mcp-cricket

Project Structure

spond-mcp-server/
├── src/
│   ├── index.ts      # Main MCP server with Firebase function export
│   └── spond.ts      # Spond API client
├── lib/              # Compiled JavaScript (generated)
├── firebase.json     # Firebase configuration
├── package.json
├── tsconfig.json
└── .env              # Environment variables (local only)

Local Development

  1. Install dependencies:

npm install
  1. Create a .env file with your Spond credentials:

SPOND_USERNAME=your_email@example.com
SPOND_PASSWORD=your_password
  1. Build the project:

npm run build
  1. Run locally with Firebase emulator:

npm run serve

Firebase Deployment

Prerequisites

  1. Install Firebase CLI (if not already installed):

npm install -g firebase-tools
  1. Login to Firebase:

firebase login

Initial Setup

  1. Create a new Firebase project (or use existing):

firebase projects:create spond-mcp-server
  1. Initialize Firebase in the project:

firebase use spond-mcp-server

Set Environment Variables (Secrets)

firebase functions:secrets:set SPOND_USERNAME
# Enter: your_email@example.com

firebase functions:secrets:set SPOND_PASSWORD
# Enter: your_password

Deploy

npm run deploy

Your MCP server will be available at:

https://<region>-<project-id>.cloudfunctions.net/mcp

Endpoints

  • /mcp/mcp - Streamable HTTP MCP endpoint (POST for requests)

  • /mcp/health - Health check endpoint

MCP Client Configuration

Claude Desktop (Remote - Streamable HTTP)

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "spond-events": {
      "url": "https://us-central1-spond-mcp-server.cloudfunctions.net/mcp/mcp"
    }
  }
}

Available Tools

get_desperados_events

Fetches all upcoming events for London Desperados CC from Spond.

No parameters required - automatically fetches events for the next year.

Related MCP Connectors

Related MCP Servers

  • F
    license
    B
    quality
    D
    maintenance
    Enables interaction with the Wisembly API to fetch and manage event data, including event details, participants, organizers, and locations.
    2
    1
    -
  • A
    license
    Not graded
    quality
    C
    maintenance
    Wraps CricAPI to provide live cricket data, enabling AI agents to query cricket information through natural language or direct tool calls.
    7 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI agents to manage events, races, and batches on Eventor via auto-generated tools from the OpenAPI spec.
    MIT