HRSSC / ELM Reference MCP Server
Provides semantic search over USPS labor-relations documents, including the Employee and Labor Relations Manual (ELM) and the APWU-HRSSC National Agreement, with cited excerpts for verification.
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., "@HRSSC / ELM Reference MCP Serverquery the ELM for what it says about leave without pay for union representatives"
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.
HRSSC / ELM Reference MCP Server
An MCP server exposing two independently queryable, fully offline vector databases for USPS/APWU labor-relations research:
query_elm— the USPS Employee and Labor Relations Manual (ELM), chunked by its own section numbering (e.g.511.43,665.41).query_hrssc— the 2024-2029 APWU-HRSSC National Agreement, chunked by Article/Section, with source page numbers.
Both are semantic-search (embedding-based) retrieval tools. They surface the relevant text with exact citations; they do not interpret whether a provision applies to any specific situation — always verify the returned text against the actual document before relying on it.
What's in here
data/
ELM_vectordb/ Chroma DB, collection "elm"
HRSSC_vectordb/ Chroma DB, collection "hrssc_agreement"
src/
server.py MCP server (FastMCP), two tools
requirements.txtSource material: ELM downloaded from the official USPS site (about.usps.com/manuals/elm/), March 2024 edition. HRSSC Agreement digitized from a personal printed copy (OCR'd, so expect occasional OCR noise in exact wording -- always confirm against the actual contract for anything consequential).
Related MCP server: Local Knowledge RAG MCP Server
Setup
pip install -r requirements.txtUsing with Claude Code / Claude Desktop
Add to your MCP config (e.g. claude_desktop_config.json or
.claude/mcp.json):
{
"mcpServers": {
"hrssc-elm-reference": {
"command": "python",
"args": ["/absolute/path/to/hrssc-elm-mcp/src/server.py"]
}
}
}Then ask Claude things like "check the ELM for reasonable accommodation
standards" or "what does the HRSSC agreement say about non-career
employees" and it will call query_elm / query_hrssc directly.
Using with ChatGPT / GPT-side tooling
ChatGPT doesn't speak MCP natively. Two practical options:
Local script, not a live connector: run
src/server.py's underlyingchromadbqueries directly in a Python environment (e.g. a Code Interpreter session with thedata/folder uploaded) -- see thequery_elm/query_hrsscfunctions inserver.pyfor the exact query pattern to copy.Wrap it as an HTTP API (not included here) and expose it as a Custom GPT Action, if you want live access from a hosted GPT rather than a one-off Code Interpreter session.
Standalone query script
For a quick terminal lookup without going through MCP at all:
python -c "
import sys
sys.path.insert(0, 'src')
from server import query_elm, query_hrssc
print(query_elm('your question here'))
print(query_hrssc('your question here'))
"Caveats
Retrieval only, not legal advice. Verify citations against the actual documents before relying on them for anything consequential.
HRSSC Agreement text went through OCR on phone-photographed pages; spot-check exact wording on anything that matters.
Neither DB covers the main APWU-USPS National Agreement (a separate document from the HRSSC-specific agreement) or USPS Handbook EL-307 (Reasonable Accommodation procedures) -- not included here.
This 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.
Related MCP Servers
- AlicenseAqualityAmaintenanceEnables local semantic search over documents and code for Claude Code and Claude Desktop, running entirely offline with local embeddings and vector storage.113MIT
- AlicenseNot gradedqualityBmaintenanceSemantic search and retrieval system for local documents using vector embeddings, enabling AI-powered search across your document collections with support for multiple embedding providers.9MIT
- AlicenseNot gradedqualityCmaintenanceEnables semantic search over local AI-agent session logs (e.g., Claude Code, Hermes) using local embeddings, returning relevant chunks without exposing full transcripts.MIT
- AlicenseNot gradedqualityDmaintenanceProvides local semantic search over files using embeddings, enabling directory indexing and natural language queries without external services.MIT
Related MCP Connectors
Page-cited retrieval for embedded docs, datasheets, MISRA, CMSIS, and RTOS references.
Token-efficient search for coding agents over public and private documentation.
Search your knowledge bases from any AI assistant using hybrid RAG.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- 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/JJHerrmann/hrssc-elm-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server