CSG Portal MCP Server
Enables access to Columbus School for Girls Veracross portal features including directory search for students/parents/staff, calendar events, and Lower School lunch volunteer scheduling through secure browser authentication.
README
CSG Portal MCP Server
⚠️ UNOFFICIAL PROJECT - This is an unofficial, community-created MCP server for Columbus School for Girls Veracross portal integration. It is not affiliated with, endorsed by, or supported by Columbus School for Girls or Veracross.
📋 REQUIREMENTS - This server requires a valid Veracross portal user account (student, parent, or staff) with active access to the CSG portal at https://portals.veracross.com/csg
A Model Context Protocol (MCP) server that provides secure access to directory search, calendar events, and other school portal features through Claude Desktop and other MCP-compatible AI assistants.
Features
- 🔐 Secure Browser Authentication - No credentials stored in Claude, login via your browser
- 📞 Directory Search - Find students, parents, and staff with contact information
- 📅 Calendar Events - Search upcoming school events and activities
- 🍽️ Lower School Lunch Volunteers - Check volunteer slots and availability
- 👥 Multi-User Support - Isolated data storage per user
- ⚡ Smart Caching - 24-hour cache for improved performance
- 🏫 CSG-Specific - Tailored for Columbus School for Girls grade system (Forms I-XII)
Installation
For Claude Desktop Users
- Install the MCP server globally:
npm install -g @bradgriffith/csg-portal-mcp
- Add to your Claude Desktop MCP configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"csg-portal": {
"command": "npx",
"args": ["@bradgriffith/csg-portal-mcp@latest"]
}
}
}
- Restart Claude Desktop
Quick Start (No Installation)
You can also use it directly without installation:
{
"mcpServers": {
"csg-portal": {
"command": "npx",
"args": ["@bradgriffith/csg-portal-mcp@latest"]
}
}
}
Prerequisites
🔑 Valid Veracross Account Required - You must have an active Veracross account with access to the Columbus School for Girls portal. This includes:
- Current students with portal access
- Parents/guardians of current students
- Faculty and staff members
- Alumni (if they have retained portal access)
If you don't have access to the CSG Veracross portal, this server will not work for you.
User Setup (Claude Desktop)
First Time Setup
After installing the MCP server, you can start using it immediately! Just send prompts to Claude and include your email address.
-
Authentication (one-time setup): Simply ask Claude to log you in:
"Please log me in to the CSG portal using my email: parent@example.com"- A web browser window will automatically open with a secure login form
- Enter your regular CSG Veracross username and password
- The page will show "Authentication successful!" when complete
- The browser window will close automatically
- Your credentials are never stored in Claude - only secure session tokens
-
Set Default User (optional but recommended):
"Set me as the default user with email: parent@example.com"- This lets you make requests without including your email every time
Example Prompts
Once authenticated, try these example prompts:
Directory Search:
"Find all families with the last name Johnson in the CSG directory"
"Search for parents in New Albany, Ohio"
"Find all students in Form VI"
"Look up contact information for families in the 43054 zip code"
Calendar Events:
"What school events are coming up in the next month?"
"Show me all upcoming Middle School events"
"Are there any events this week?"
"What's on the school calendar for the next 3 months?"
Lower School Lunch Volunteers:
"Check the Lower School lunch volunteer slots for this week"
"Are there any open lunch volunteer positions for next week?"
"Show me lunch volunteer slots for August 27, 2025"
"Are there any available volunteer spots on Wednesday?"
"Show me days this week that need lunch volunteers"
User Management:
"Check if I'm still authenticated with the CSG portal"
"Clear my stored credentials"
Developer Setup
Note: End users don't need this section - it's only for developers who want to modify or contribute to the project.
Required Environment Variables
Create a .env file or set environment variables:
# MongoDB connection (required for production use)
MONGODB_URI=mongodb://localhost:27017
MONGODB_DATABASE=csg_portal
# Encryption key for secure credential storage
ENCRYPTION_MASTER_KEY=your-secure-encryption-key-here
# Veracross portal URL (optional, defaults to CSG)
VERACROSS_BASE_URL=https://portals.veracross.com/csg
# SignUpGenius URLs (optional, defaults to current CSG URLs)
LS_LUNCH_SIGNUP_URL=https://www.signupgenius.com/go/10C084BADAA2BA2FFC43-57722061-lslunch#/
MongoDB Setup
The server requires MongoDB for secure credential and cache storage:
- Local Development: Install MongoDB locally
- Production: Use MongoDB Atlas or similar cloud service
Available Tools
login
Log in to the CSG Veracross portal via secure browser authentication. No credentials are stored in Claude.
search_directory
Search the school directory for students, parents, and staff.
- Parameters:
firstName,lastName,city,postalCode,gradeLevel - Grade Levels: Use CSG format like "VI", "X", "3/4 Yr Olds", etc.
school_events
Check upcoming school calendar events.
- Default: Searches next 3 months
- Auto-fallback: Extends to 12 months if no events found
- Parameters:
searchMonths,refresh
lunch_volunteers
Check Lower School lunch volunteer opportunities.
- Shows: Only days with open volunteer slots (filters out fully booked days)
- Positions: Salad/deli and Soup volunteer roles
- Times: All shifts are 10:45am - 11:45am in the dining hall
- Source: SignUpGenius (no Veracross authentication required)
- Parameters:
refresh,date(YYYY-MM-DD),week("this", "next", or date) - Date Filtering: Can search specific dates or weeks (Sunday-Saturday)
- Smart Filtering: Only displays days that need volunteers (0 or 1 volunteer signed up)
set_default_user
Set a default user email to avoid entering it repeatedly.
check_authentication
Verify if you have a valid stored authentication session.
Security
- No Credential Storage in Claude: Authentication happens via secure browser flow
- Encrypted Storage: All credentials encrypted with AES-256-CBC
- User Isolation: Each user's data is completely isolated using email-based hashing
- Environment Variables: Sensitive configuration via environment variables only
CSG Grade System
The server understands Columbus School for Girls' Form system:
- PYC: "3/4 Yr Olds", "4/5 Yr Olds"
- Lower School: Forms I, II, III, IV, V
- Middle School: Forms VI, VII, VIII
- Upper School: Forms IX, X, XI, XII
Development
Local Development
# Clone and install
git clone https://github.com/bradgriffith/csg-portal-mcp.git
cd csg-portal-mcp
npm install
# Set up environment
cp .env.example .env
# Edit .env with your settings
# Build and run
npm run build
npm start
Contributing
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Troubleshooting
Common Issues
"No user email provided"
- Use
set_default_usertool first, or provideuserEmailparameter
"Browser authentication required"
- Use
authenticate_browsertool to log in via your browser
"Calendar search failed"
- Check your authentication status with
check_authentication - Try the
refresh: trueparameter to bypass cache
"Directory search failed"
- Verify you're authenticated and have portal access
- Check that grade levels use correct CSG format
Debug Mode
Set NODE_ENV=development for additional logging output.
Disclaimer
This is an unofficial project created by a member of the CSG community. It is not affiliated with, endorsed by, or supported by:
- Columbus School for Girls
- Veracross, Inc.
- Anthropic (makers of Claude)
Use at your own discretion. The author is not responsible for any issues that may arise from using this software.
License
MIT License - see LICENSE file for details.
Support
- Issues: GitHub Issues
- Email: brad@bradgriffith.com
Note: For official CSG IT support, please contact the school directly. This unofficial project is not supported by CSG IT services.
Built by the CSG community, for the CSG community 🏫
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
E2B
Using MCP to run code via e2b.