Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1.16 KB

File metadata and controls

40 lines (28 loc) · 1.16 KB

AGENT_GUIDE

This file is kept as a stable entry point for AI-agent documentation.

Primary References

MCP Programmatic Entry Points

from eptr2.mcp import create_mcp_server, run_mcp_server
  • run_mcp_server(...): async helper that creates and runs the server
  • create_mcp_server(...): returns a configured FastMCP server for explicit lifecycle control

Canonical Call-Key Notes

Use these call keys in code and MCP generic calls:

  • mcp (alias: ptf)
  • smp (alias: smf)
  • rt-cons
  • rt-gen
  • load-plan
  • mcp-smp-imb

When in doubt, use discovery:

from eptr2 import EPTR2

eptr = EPTR2(use_dotenv=True, recycle_tgt=True)
calls = eptr.get_available_calls(include_aliases=True)