Support

Claude Code Setup

Connect Tempreon to Claude Code (Anthropic's CLI) for developer workflows.

Overview

Claude Code is Anthropic's command-line AI tool for software development. Connecting it to Tempreon means your coding AI knows your architecture decisions, coding style preferences, project context, and everything else in your intelligence layer.

Prerequisites

  • Claude Code installed and configured
  • A Tempreon account with at least one available Bridge slot
  • Your Tempreon connection details (found in your Bridges dashboard)

Step-by-Step Setup

1. Get Your Connection Details

Log into Tempreon and navigate to the Bridges section of your dashboard to find your MCP server URL.

2. Add to Your MCP Configuration

Claude Code reads MCP server configurations from a .mcp.json file in your project directory (or your home directory for global configuration).

Add a Tempreon entry to your .mcp.json:

{
  "mcpServers": {
    "tempreon": {
      "url": "YOUR_SERVER_URL_FROM_BRIDGES_DASHBOARD"
    }
  }
}

Tip: Place the .mcp.json in your home directory (~/.mcp.json) to make Tempreon available across all projects. Place it in a project directory to scope it to that project only.

3. Authorize the Connection

The first time Claude Code connects to Tempreon, it will open a browser window for authorization:

  1. A browser window opens with the Tempreon consent screen
  2. Log in if prompted
  3. Review and approve the connection

After approving, Claude Code will store the authorization token and reconnect automatically in future sessions.

4. Verify the Connection

Start a Claude Code session and try:

"What Tempreon tools do you have access to?"

If Claude Code lists Tempreon's tools (search, remember, tasks, etc.), the Bridge is working.

Developer-Specific Features

Claude Code with Tempreon is particularly powerful for developers because:

  • Architecture decisions persist. "Remember: we chose event-driven architecture for the notification system" stays in your Knowledge Vault and surfaces in future coding sessions.
  • Project context carries over. Domain-scoped knowledge means your AI knows the difference between your work projects and personal projects.
  • Code patterns are learned. Your Instincts capture coding style preferences — naming conventions, error handling approaches, testing philosophy.
  • Task management integrated. "Create a task to refactor the auth middleware, high priority" builds your backlog without leaving the terminal.

Try Saying...

  • "Remember: the API rate limit is 100 requests per minute per user" — Stores technical knowledge for future reference
  • "What do we know about the payment service architecture?" — Searches your Knowledge Vault for relevant records
  • "Create a task to add input validation to the signup endpoint" — Adds to your task queue
  • "Save this migration plan as a spec document" — Stores a file in your File Vault

Common Issues

ProblemSolution
.mcp.json not being picked upEnsure the file is valid JSON and in the correct directory
Browser doesn't open for authCheck that Claude Code can open your default browser
"Connection timeout"Verify your internet connection and that the server URL is correct
Tools not appearingRestart Claude Code after adding the configuration

For more help, see Troubleshooting Connections.