rock-rms-mcp
A read-only MCP server for Rock RMS that allows querying People, Groups, Group Members, and Attendance via its REST API.
README
rock-rms-mcp
A thin, read-only MCP server for Rock RMS. Lets Claude Desktop / Cowork query People, Groups, Group Members, and Attendance from your Rock instance over its REST API. GET-only by design; there is no code path that writes to Rock.
This is a stopgap. Native MCP support lands in Rock v21; when you upgrade, retire this project and switch to the built-in server.
1. Rock-side setup
The REST key's permissions are the real security boundary here, so set it up with least privilege:
-
Create a service person record in Rock, e.g. "Claude MCP Agent" (record type: Business or a regular Person record; either works for REST keys). Do NOT attach the key to your own admin account.
-
Create a security role, e.g.
RSR - Claude MCP Read Only, and add the service person to it. -
Create the REST key: Admin Tools > Security > REST Keys > add a key attached to the service person. Copy the key; you'll put it in the config below.
-
Grant controller permissions: Admin Tools > Security > REST Controllers. Grant the role View (only View) on:
- People
- Groups
- GroupMembers
- Attendances
- Campuses (optional, cheap and useful)
Leave everything else, especially all Financial* controllers, unpermitted.
-
Verify default-deny: as long as the service person isn't in any broader security roles, controllers you didn't explicitly grant will return 401/403.
2. Install and build
Requires Node.js 18+.
cd rock-mcp
npm install
npm run build
This compiles src/index.ts to dist/index.js.
3. Wire into Claude Desktop / Cowork
Edit claude_desktop_config.json:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Add (adjust the path and values):
{
"mcpServers": {
"rock-rms": {
"command": "node",
"args": ["C:\\Users\\[ User ]\\rock-mcp\\dist\\index.js"],
"env": {
"ROCK_BASE_URL": "https://rock.[ your church ].org",
"ROCK_API_KEY": "PASTE-REST-KEY-HERE"
}
}
}
}
Fully quit and reopen the Claude app (tab close is not enough).
Key handling: the REST key sits in this config file in plain text. That's normal for local MCP servers, but treat the file accordingly; it's another reason the key must be least-privilege, not admin-level.
4. Test
In a Cowork session, try:
- "Search Rock for people named Smith"
- "List active groups whose name contains 'ESL'"
- "Who are the active members of group 1234?"
- "Show attendance for group 1234 between 2026-06-01 and 2026-07-01"
And confirm the security boundary holds:
- "Use rock_get to fetch /api/FinancialTransactions?$top=1" should come back 401/403. If it doesn't, revisit step 1.
Tools exposed
| Tool | Purpose |
|---|---|
search_people |
Name search via /api/People/Search |
get_person |
Single person by PersonId |
list_groups |
Groups, filterable by GroupTypeId / name fragment |
get_group_members |
Active members of a group, with Person + role expanded |
get_attendance |
Attendance in a date range, optionally per group |
rock_get |
Constrained generic GET (must start with /api/, GET only) |
Notes
- Rock's REST API uses OData v3 query syntax (
$filter,$expand,$top,$orderby,substringof(...)). - Remember many Rock tables join on
PersonAliasId, notPersonId; expand throughPersonAliaswhen a raw endpoint hands you alias ids.
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.