Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@planning-center-mcpwhat are the upcoming services this weekend?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Planning Center MCP Server
An MCP (Model Context Protocol) server for Planning Center Online Services. Gives AI agents (Claude, etc.) direct access to your worship plans, song library, teams, and volunteer data.
Includes a built-in AI agent (ask_question) that accepts natural language questions and calls tools automatically using a local Ollama model.
Tools
AI Agent
Tool | Description |
| Ask a natural language question about your PCO data. Uses a local Ollama model to call the appropriate tools and return a human-readable answer. |
Services & Plans
Tool | Description |
| List all service types |
| Paginated plans for a service type (most recent first) |
| Get songs, headers, and media in a plan |
| Get volunteers assigned to a plan |
| Get items and team members in one call |
Songs & Arrangements
Tool | Description |
| Paginated song library listing |
| Get a song by ID or search by title |
| Schedule history for a song |
| List arrangements, or get a specific one by ID |
| Available keys for an arrangement |
| List file attachments (PDFs, audio, etc.) |
| Create a new song |
Tags
Tool | Description |
| List all available song tags by group |
| Tag a song by tag name |
| Find songs matching tags (AND logic) |
File Visibility (Attachment Types)
Tool | Description |
| List org-level file classification types |
| Create custom types (Lead Sheet, Guitar Tab, etc.) |
| Get teams, positions, and their attachment type mappings |
| Assign which file types a position can see |
| Toggle position-based file visibility on a service type |
Reports (cached data)
Sync
Tool | Description |
| Sync PCO data (incremental by default, |
| Check when the last sync occurred |
| All team names from synced data |
Song Library
Tool | Description |
| Ranked song play counts with optional date range and service type filters |
| Full song details: arrangements, key-per-schedule history |
| Keys ranked by frequency across all songs in a time period |
| All songs ever played in a specific key (e.g. |
| Songs not played in the last N months — sorted by most recently used before the cutoff |
| Songs most frequently paired with a given song in the same service |
| Songs that were played frequently in an older window but have since dropped off |
| Tempo (BPM) and key progression across recent services, in song order |
Service Plans
Tool | Description |
| Recent plans with setlists (including key per song) and team rosters |
| Upcoming plans with confirmed / pending / declined team members |
| Songs most commonly used in a given service position ( |
Volunteers & People
Tool | Description |
| Volunteer frequency with optional team and date filters |
| Volunteers with the most declined requests, including decline rate |
| Keys used in plans where a person served, optionally filtered by role |
| Songs played when a person served, optionally filtered by role |
Related MCP server: ServiceTitan MCP Server
AI Agent: ask_question
The ask_question tool runs a multi-step tool-calling loop using a local Ollama model. It selects and chains the appropriate tools automatically based on your question, then returns a concise, human-readable answer.
How It Works
Your question is sent to the Ollama model along with the schemas for 30 curated read-only tools
The model decides which tools to call and with what parameters
Tool results are fed back to the model
Steps 2–3 repeat (up to 10 iterations) until the model produces a final answer
Configuration
Environment Variable | Default | Description |
|
| Ollama instance URL |
|
| Model to use for tool calling |
Any model with tool-calling support works. Larger models (24B+) are significantly more reliable at multi-step reasoning. Tested with mistral-small3.1.
Example Questions
Song Library
What are our top 10 most played songs over the last 6 months?
When did we last play "How Great Is Our God"?
What key do we usually play "Blessed Be Your Name" in?
What songs have we not played in the last 3 months?
What songs have we quietly dropped from rotation this year?Keys & Setlist Planning
What are the most popular keys we use?
What songs can we do in G?
What songs pair well with "Cornerstone"?
What do we usually open with?
What's our typical tempo arc through a service?Service Plans
What songs are in this Sunday's service?
Show me the last 3 Sunday morning setlists with keys.
Which upcoming services have open volunteer spots?
What did we play on Easter?Volunteers & Teams
Who are our most active volunteers over the last 3 months?
Who has been declining a lot of service requests lately?
Who is on the worship team this Sunday?
Which team positions are unfilled for next week?Person-Specific
What keys does [name] play in when on guitar?
What songs does [name] tend to pick when leading worship?
What teams does [name] serve on?General
When was the data last synced from Planning Center?
What service types do we have?Prompting Tips
Be specific with time ranges: "last 3 months" or "since January" works better than "recently"
Name songs directly: Use the song title as it appears in PCO for best results
Ask one thing at a time: Multi-part questions ("top songs AND who played last week") can confuse the model — ask them separately
For volunteers, specify the team: "Who is on the band this Sunday?" is clearer than "who is volunteering?"
Synced data vs live data: Reports (song usage, volunteer activity, upcoming services) query the local MongoDB cache — run a sync first if your data may be stale. Direct lookups (
get_song,get_plans) hit PCO live.The agent won't modify data: It only has access to read-only tools. Write operations (creating songs, assigning tags) must be called directly.
Setup
1. Get PCO API Credentials
Create a Personal Access Token at the PCO Developer Portal.
2. Configure
cp .env.example .env
# Edit .env with your PCO credentials, MongoDB password, and Ollama URL3. Run with Docker (recommended)
docker compose up -dThe MCP endpoint will be available at http://localhost:8080/mcp.
4. Run Locally (alternative)
pip install .
planning-center-mcpRequires a running MongoDB instance (set MONGO_URI in .env).
Connect to Claude
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"planning-center": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"planning-center": {
"type": "http",
"url": "http://localhost:8080/mcp"
}
}
}Architecture
PCO API ← pypco ─┬─ services.py (direct API tools)
└─ sync.py ──── MongoDB ─┬─ queries.py ─ reports.py (cached reports)
└─ llm.py (embeddings, optional AI summaries)
agent.py ─ Ollama (tool-calling loop) ─ dispatches to any registered toolDirect tools (
services.py): Hit the PCO API live. No cache needed.Report tools (
reports.py): Query local MongoDB for aggregated data. Runsync_pco_datato refresh.Sync (
sync.py): Incremental by default — only fetches records updated since the last sync.Agent (
agent.py): Accepts a natural language question, builds an Ollama tool-calling loop over 30 curated read-only tools, and returns a plain-text answer.AI features (
llm.py): Optional. Enables AI-generated summaries via Ollama.
Development
pip install -e ".[dev]"
pytestThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nathanrcast/planning-center-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
