TMCP
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., "@TMCPcompose a packet for the login feature"
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.
TMCP turns scattered agent instructions into task-specific operating packets. The user describes the work in natural language. TMCP infers task identity, compiles the strongest current packet from skills/rules/evidence, recompiles as the work changes, and leaves an audit trail.
Skill names are provenance, not the user interface. Power users can still force a route; the default is natural prompting.
AIOS is optional storage and adapter support. TMCP runs standalone from a repo checkout, copied plugin package, Codex plugin cache, Claude plugin cache, or any MCP host that can launch the bundled Node entrypoint.
See docs/ADAPTIVE_PACKET_RUNTIME.md for the adaptive packet runtime design.
Quickstart
From a TMCP checkout or plugin root:
node scripts/tmcp_launcher.mjs doctor
node scripts/tmcp_launcher.mjs status
node scripts/tmcp_launcher.mjs compose-packet "Improve this agent run" --project-path . --phase start
node scripts/tmcp_launcher.mjs harvest skills --limit 5 --no-write-artifacts
node scripts/tmcp_launcher.mjs recommend skills --candidate-workflows release_readiness --candidate-workflows developer_experience --min-confidence 0.1 --compose --no-write-artifactsWith no arguments, the same launcher starts the MCP stdio server:
node scripts/tmcp_launcher.mjsRelated MCP server: @focus-mcp/cli
Install Layouts
Skill-only install: copy
skills/tmcpinto a skills directory. Use the skill for routing and manual packet synthesis unless the host also exposes the bundled launcher.Repo checkout: clone the repo and run
node scripts/tmcp_launcher.mjs doctorfrom the checkout root.Codex plugin cache: install as a Codex plugin; MCP config launches relative
scripts/tmcp_launcher.mjsfrom the plugin root.Shared local runtime: install a verified archive with
scripts/tmcp_runtime.mjsso all agent hosts use one pinned active release with offline rollback. See Central runtime.AIOS-backed install: set
AIOS_ROOTexplicitly only when you want optional AIOS storage/adapter behavior.
Claude Desktop users can add the launcher as a local stdio MCP server. See docs/CLAUDE_DESKTOP.md.
Stability Scopes
TMCP labels three independent surfaces:
Skill packages:
tmcp,skill-harvest,workflow-recommendation,release-readiness, anddx-auditare stable routing packages.Curated workflow templates:
release-readinessanddx-auditare the stable templates in the recommendation catalog.MCP tool contracts:
doctor,status,explain,compose-packet, andruntime-nextare stable. Harvest, evaluation, recommendation, promotion, receipt, and expert-rubric tools remain experimental.
Experimental templates and tools remain shipped and callable. They are labeled experimental in their own outputs and frontmatter so users do not confuse a stable package route with a stable tool contract or curated template.
Experimental workflows include UI rubric, security/privacy, test strategy, adaptive workflow pack, custom rubric generation, routing policy, skill gap analysis, incident postmortem, architecture decision, migration readiness, agent handoff, PR risk, performance readiness, data integrity, public-sector readiness, and repo behavior spec loop.
Tools
Tool | Purpose |
| Check first-run readiness and supported install layouts. |
| Report standalone capability and optional AIOS adapter status. |
| Compile a task-specific TMCP packet. |
| Compile a task/phase operating packet with |
| Return packet deltas or a full recompiled packet ( |
| Write an advisory run receipt after verification or outcome on a secure-persistence host. |
| Harvest local skills, instructions, rules, docs, and workflows into source nodes. |
| Create or score a skill-evaluation plan from full |
| Recommend stable or experimental workflows from harvested evidence, with stability metadata. |
| Explicitly promote reviewed harvest signals into durable source-to-atom and atom-to-workflow graph artifacts. |
| Produce an expertise packet, scored rubric, evidence audit, remediation plan, and verification expectations. |
Safety
Harvest redacts sensitive-looking values and secret-like provenance paths by default and treats harvested instructions as untrusted text. Default harvest behavior excludes .env*, credentials, tokens, browser profiles, private caches, dependency trees, build outputs, VCS data, and generated TMCP/AIOS artifacts. It does not follow source symlinks unless follow_symlinks is explicitly enabled; enabled links must still resolve inside the selected source root.
On hosts with secure descriptor-relative filesystem operations, harvest artifacts
are written as one staged, atomic bundle through a symlink-safe destination.
Leave output_dir unset for a unique .tmcp/harvest-* directory, or provide an
output directory that is new or empty.
Skill evaluation accepts explicit regular SKILL.md inputs, can confine them to a supplied project root, and redacts source, plan, and evidence values before deriving reports. Its initial plan artifact is a staged bundle in a new or empty directory; evidence scoring may safely add its report to that same directory.
Artifact persistence is deliberately unavailable where those secure filesystem
operations do not exist. doctor and status report the capability; use
--no-write-artifacts for portable analysis and see
Compatibility for the
boundary.
tmcp_record_receipt has no non-persisting preview because the receipt is the
artifact itself. Run it only when status reports artifact persistence
available.
Packet sessions are equally explicit: compose-packet --session-id writes one
redacted, project-local latest-packet record only when secure persistence is
available. They are for a single serialized run, not a global history or
coordination service. See the CLI session contract.
If a harvested source tries to override system, developer, or user instructions, TMCP reports a warning. See SECURITY.md.
Examples
Harvest a local skills folder:
node scripts/tmcp_launcher.mjs harvest ./skills --objective "Harvest reusable skill behavior" --limit 20 --no-write-artifactsRecommend workflows for a project:
node scripts/tmcp_launcher.mjs recommend . --candidate-workflows release_readiness --candidate-workflows developer_experience --min-confidence 0.1 --compose --no-write-artifactsCompose a current-task packet and recompile during the run. This session flow
requires status to report artifact persistence available:
node scripts/tmcp_launcher.mjs compose-packet \
"Redesign these pages. Make them visually striking, interactive, modern, motion-rich, and production-ready." \
--project-path "$PWD" --phase start --session-id redesign-run
node scripts/tmcp_launcher.mjs recompile-packet \
"Redesign these pages..." \
--project-path "$PWD" \
--current-phase runtime \
--session-id redesign-run \
--files-changed app/page.tsx
node scripts/tmcp_launcher.mjs record-receipt packet-123 --activated-atoms ui-browser-verification --outcome passedWhen session persistence is unavailable, preserve the compatibility path by
passing the prior composed JSON inline through --previous-packet instead.
Legacy delta-only runtime routing:
node scripts/tmcp_launcher.mjs compose-packet "Fix the dashboard UI bug" --project-path . --phase start
node scripts/tmcp_launcher.mjs runtime-next "Fix the dashboard UI bug" --current-phase verification --files-changed app/page.tsx --failures "vitest failed"
node scripts/tmcp_launcher.mjs record-receipt packet-123 --activated-atoms ui-browser-verification --outcome passedPromote reviewed harvest signals into durable routing artifacts:
node scripts/tmcp_launcher.mjs promote-harvest . --selected-workflows release_readiness_workflow --output-dir .tmcp/promoted-harvests/release-readinessOn secure-persistence hosts, promotions also persist a redacted advisory graph
under TMCP_HOME/promoted-harvests/<opaque-promotion-key>/, or
~/.tmcp/promoted-harvests/<opaque-promotion-key>/ when TMCP_HOME is unset.
Receipts live under TMCP_HOME/receipts/<yyyy-mm>/.
Global cache content is advisory and cannot override system, developer, user, or
project instructions.
Packet composition and runtime routing do not read that cache unless the caller
explicitly passes --cache-policy global; their default policy is none.
Run an expert rubric review from evidence snippets:
node scripts/tmcp_launcher.mjs review-plan "Review release portability" \
--project-path . \
--evidence-json '[{"dimension_id":"source_grounding","severity":"warning","summary":"Release claims need fresh package evidence.","evidence":["python3 scripts/check_release_package.py ."],"recommended_fix":"Run and cite the release package check before publishing."}]' \
--no-write-artifactsMore examples live in examples. Developer onboarding and release readiness exercise stable curated templates; skill-harvest and recommendation examples remain available through experimental tool contracts.
Validation
Before release:
python3 -m unittest discover -s tests
python3 scripts/release_package_compile.py .
node --check scripts/tmcp_launcher.mjs
python3 scripts/check_contracts.py .
python3 scripts/check_install.py .
python3 scripts/check_release_package.py . --verify-reproducibleThe release package check builds from a clean, reviewed Git revision rather than the working directory. It ships only an explicit allowlist of committed files, rejects unsafe paths, symlinks, and secret-like content, then emits a deterministic RELEASE_MANIFEST.json plus archive digest. The CI release gate repeats the build from the same Git tree and requires both digests to match. It also validates frontmatter, hardcoded local paths, private example names, links, extracted-package install shape, doctor, sample harvest, sample workflow recommendation, sample expert rubric planning, composition/runtime/receipt smoke coverage, and stable/experimental workflow labeling. It is a DOI blocker until existing absolute user paths in release evidence docs are redacted or normalized.
DOI-Ready Research Release
TMCP is prepared as an independent software-methods artifact. See RESEARCH_READY.md and docs/release-notes/v0.3.3-doi.md for the citable artifact boundary, validation path, data-availability policy, and claim limits.
References
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
- AlicenseAqualityFmaintenanceMCP Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems.Last updated155932,142TypeScriptMIT

@focus-mcp/cliofficial
Alicense-qualityAmaintenanceMCP orchestrator that loads modular bricks on demand, reducing AI agent context usage by ~65%.Last updated136MIT- Flicense-qualityCmaintenanceA multi-domain multi-agent system served over MCP (Model Context Protocol) with FastMCP, exposing specialized domain agents as tools to automate business workflows.Last updated
- Alicense-qualityDmaintenanceAI Agent Instruction Hub that orchestrates context-aware instruction packs for MCP-compatible agents.Last updated21PolyForm Noncommercial 1.0.0
Related MCP Connectors
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
Verifiable agent-to-agent task handoff with signed provenance chain. Initiating agent signs the ...
Paid remote MCP for agent code search routing MCP, structured receipts, audit logs, and reviewer-rea
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/jakyeamos/tmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server