TPLCP Reference
FreeNot checkedTurns the 2026 CLCP orientation corpus into a searchable, citation-preserving reference source for TPLCP report work.
About
Turns the 2026 CLCP orientation corpus into a searchable, citation-preserving reference source for TPLCP report work.
README
This local MCP server turns the 2026 CLCP orientation corpus into a searchable, citation-preserving reference source for TPLCP report work. It keeps source files local, preserves relative paths and SHA-256 identifiers, prioritizes current internal standards, and excludes credential-oriented files from search by default.
Data flow
- Run
tools/corpus_extract.pyagainst the orientation folder. The extractor inventories every file, hashes exact duplicates, and writesfiles.jsonlplus readable text undertexts/. - Run
build_index.pyto createtplcp_reference.sqlite3in that extraction directory. - Set
TPLCP_INDEX_DIRto the extraction directory and runserver.pyover MCP stdio.
The checked-in server is intentionally separate from the source corpus. Do not commit the extracted text cache or any source documents containing client records, credentials, or personal information.
Tools
tplcp_retrieve_for_question: preferred first step for a natural-language question. Returns a ranked evidence pack with controlling guidance first, examples second, and contextual references third.tplcp_search_reference: paged full-text search with role/module filters and source provenance.tplcp_get_reference_document: bounded, path- or SHA-256-addressed excerpts.tplcp_get_standards: highest-authority current TPLCP standards for a topic.tplcp_get_report_examples: illustrative report/template patterns.tplcp_list_modules: orientation module map.tplcp_reindex_reference: explicit local cache rebuild after a new extraction.
Skill suite
The skills/ directory contains the 15 operational TPLCP skills defined by the
reporting playbook:
tplcp-reporting-orchestratortplcp-medical-review-summarytplcp-life-care-plantplcp-medical-cost-projectiontplcp-report-writing-standardstplcp-executive-summarytplcp-clinical-recommendation-researchtplcp-standardized-assessment-interviewtplcp-coding-costing-methodologytplcp-vendor-survey-atustplcp-life-expectancytplcp-rebuttal-analysistplcp-deposition-trial-preptplcp-report-qatplcp-privacy-source-control
Each skill has a required SKILL.md and UI metadata under agents/openai.yaml.
The skills retrieve current guidance through the MCP and do not contain the
private orientation corpus.
To install the skills into a local Codex skills directory:
mkdir -p "${CODEX_HOME:-$HOME/.codex}/skills"
cp -R skills/* "${CODEX_HOME:-$HOME/.codex}/skills/"
After installation, connect the MCP server, then invoke the orchestrator or a specialized skill by name. Keep the local corpus extraction and SQLite index outside the repository.
Question behavior
For a natural-language question, use tplcp_retrieve_for_question first. The
tool makes the source hierarchy explicit:
- Current internal TPLCP standards, workflow guidance, templates, and orientation instructions are the controlling source of truth.
- TPLCP and external report examples show structure and patterns but do not override current guidance.
- Clinical, costing, testimony, and educational materials provide context and require professional judgment.
The calling model should answer from the returned excerpts, preserve source paths and page numbers as citations, and identify when the corpus does not contain enough information to answer confidently. The tool retrieves evidence; it does not make medical, legal, or case-specific conclusions.
Example MCP configuration
{
"mcpServers": {
"tplcp-reference": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/tplcp_reference_mcp/server.py"],
"env": {
"TPLCP_INDEX_DIR": "/absolute/path/to/analysis/clcp_corpus"
}
}
}
}
Use TPLCP_INDEX_DB instead when the SQLite file is stored separately.
Local MCP client connection
The current server works locally over stdio. Configure a local MCP-capable client with:
{
"mcpServers": {
"tplcp-reference": {
"command": "/absolute/path/to/python",
"args": ["/absolute/path/to/tplcp-reference-mcp/server.py"],
"env": {
"TPLCP_INDEX_DIR": "/absolute/path/to/clcp_corpus"
}
}
}
}
ChatGPT or hosted GPT connection
Hosted ChatGPT cannot reach a process listening only on this Mac. It needs an HTTPS MCP endpoint. The recommended path for this private source of truth is OpenAI's Secure MCP Tunnel:
tunnel-client init \
--sample sample_mcp_stdio_local \
--profile tplcp-reference \
--tunnel-id <tunnel_id> \
--mcp-command "env TPLCP_INDEX_DIR='/absolute/path/to/clcp_corpus' '/absolute/path/to/python' '/absolute/path/to/tplcp-reference-mcp/server.py'"
tunnel-client doctor --profile tplcp-reference --explain
tunnel-client run --profile tplcp-reference
Then create a developer-mode app in ChatGPT, choose Tunnel, select the tunnel, scan the tools, and test it in a new chat. Keep the app read-only by allowlisting the retrieval, standards, examples, document, and module tools. Do not expose this corpus through an unauthenticated public URL.
For a directly hosted deployment, run server.py --transport streamable-http and expose only the authenticated HTTPS /mcp endpoint. The
server supports this transport, but the private tunnel is safer for source
material containing company standards and case-related references.
Install TPLCP Reference in Claude Desktop, Claude Code & Cursor
unyly install tplcp-reference-mcpInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add tplcp-reference-mcp -- uvx --from git+https://github.com/cskerritt/tplcp-reference-mcp tplcp-reference-mcpFAQ
Is TPLCP Reference MCP free?
Yes, TPLCP Reference MCP is free — one-click install via Unyly at no cost.
Does TPLCP Reference need an API key?
No, TPLCP Reference runs without API keys or environment variables.
Is TPLCP Reference hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install TPLCP Reference in Claude Desktop, Claude Code or Cursor?
Open TPLCP Reference on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare TPLCP Reference with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
