Support
Skills
Every skill works with Claude Desktop, Claude.ai, and any MCP-compatible client.
Available Tools
Status & Health
| Tool | Description |
|---|---|
tarx_status | System health and uptime |
Memory
| Tool | Description |
|---|---|
tarx_remember | Store a memory, decision, or note permanently |
tarx_recall | Semantic search over stored memories |
tarx_save_conversation | Persist a conversation summary with key decisions |
Spaces & Files
| Tool | Description |
|---|---|
tarx_list_spaces | List all Spaces (projects) |
tarx_list_files | List files indexed in a Space |
tarx_project_context | Load full project context — files, decisions, activity |
tarx_recent_activity | What was the user working on recently |
Delegation
| Tool | Description |
|---|---|
tarx_delegate | Queue a task for background execution |
tarx_pending_tasks | List tasks waiting in the delegation queue |
Tool Annotations
Every tool includes MCP annotations for client optimization:
- readOnlyHint: Tool doesn’t modify state (safe to call speculatively)
- idempotentHint: Calling multiple times produces same result
- openWorldHint: Tool accesses external systems
- destructiveHint: Tool deletes or overwrites data
Client Profiles
TARX detects your MCP client and adjusts tool descriptions:
- Minimal (Claude, Cursor, Windsurf): Short descriptions to save context window
- Rich (custom clients): Detailed descriptions with args, return types, usage hints
OpenAI Function Calling
For OpenAI-compatible agents, TARX exports the launch-safe local context tools in function calling format:
curl https://mcp.tarx.com/openai-toolsThis returns tarx_status, tarx_memory_store, tarx_memory_search, and tarx_context with JSON Schema parameters. Keep the handlers on the user’s Computer and execute them against http://127.0.0.1:11440 for private memory.
