Wedding Planner MCP Server
A Model Context Protocol server that connects AI assistants to a Google Sheets wedding planner template for managing wedding budget, guest list, schedule, and more through natural language.
README
š Wedding Planner MCP Server
A Model Context Protocol (MCP) server that connects AI assistants to a Google Sheets wedding planner template. Manage your wedding budget, guest list, schedule, and more ā all through natural language via any MCP-compatible client.
⨠Features
š To-Do & Coordination
| Tool | Description |
|---|---|
get_todos |
Get all to-do items |
add_todo |
Add a new to-do item |
update_todo |
Update an existing to-do |
delete_todo |
Delete a to-do item |
get_coordination |
Get vendor coordination data |
update_coordination |
Update vendor coordination |
š Schedule
| Tool | Description |
|---|---|
get_schedule |
Get the wedding day schedule |
update_schedule |
Update a schedule entry |
delete_schedule |
Clear a schedule entry |
š° Budget (Full CRUD + Category Management)
| Tool | Description |
|---|---|
get_budget_summary |
Budget estimator overview |
get_detailed_budget |
All items from Detailed budget |
add_budget_category |
Create new category (auto-clones formatting & formulas) |
update_budget_category |
Rename category and/or update estimate |
delete_budget_category |
Delete custom category (with protection for built-in categories) |
add_budget_item |
Add item to a category (smart row insertion) |
update_budget_item |
Update an existing budget item |
delete_budget_item |
Delete a budget item |
š„ Guest List
| Tool | Description |
|---|---|
get_guest_list |
Get all guests with details |
add_guest |
Add a new guest |
update_guest |
Update guest info by row |
delete_guest |
Delete a guest |
search_guests |
Search by name, invitedBy, or any field |
get_guest_summary |
Stats: total, attending, responses, by invitedBy |
š Invitations
| Tool | Description |
|---|---|
get_invitations |
Get summary counts and vendor list |
add_invitation_vendor |
Add a new vendor |
update_invitation_vendor |
Update vendor details |
delete_invitation_vendor |
Delete a vendor |
š Prerequisites
- Node.js ā„ 22
- Google Cloud Service Account with Sheets API access
- A Google Sheets spreadsheet based on the wedding planner template
ā” Quick Start
1. Clone & Install
git clone https://github.com/kiboud/weddingplanner_mcp.git
cd weddingplanner_mcp
npm install
2. Configure
Create a .env file:
SPREADSHEET_ID=your_google_spreadsheet_id_here
GOOGLE_APPLICATION_CREDENTIALS=./gcp-service-account.json
PORT=8080
Place your GCP service account credentials as gcp-service-account.json in the project root.
3. Build & Run
npm run build
npm start
The server will start on http://localhost:8080 with:
- SSE endpoint:
http://localhost:8080/sse - Message endpoint:
http://localhost:8080/message
š³ Docker
Build & Run
docker compose up -d --build
docker-compose.yml
The included docker-compose.yml mounts the GCP credentials and exposes port 8080. Adjust the volume path to match your credential location:
volumes:
- /path/to/gcp-service-account.json:/root/.openclaw/workspace-wedding/gcp-service-account.json:ro
š Connect to an MCP Client
Gemini CLI / Antigravity
Add to your MCP config:
{
"mcpServers": {
"wedding-planner": {
"url": "http://localhost:8080/sse"
}
}
}
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"wedding-planner": {
"url": "http://localhost:8080/sse"
}
}
}
š Project Structure
weddingplanner_mcp/
āāā src/
ā āāā index.ts # MCP server + tool registry
ā āāā google-sheets.ts # Google Sheets API service layer
āāā build/ # Compiled JS (gitignored)
āāā Dockerfile
āāā docker-compose.yml
āāā tsconfig.json
āāā package.json
āāā .env # Config (gitignored)
š Security Notes
.envandgcp-service-account.jsonare gitignored ā never commit secrets- Built-in budget categories (Ceremony, Reception, etc.) are protected from deletion
- Duplicate category names are rejected
š License
ISC
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.