Skip to main content

Overview

Claude Code is Anthropic’s CLI tool for AI-assisted software development. You can connect your Logic MCP server to make Logic agents available during coding sessions.

Prerequisites

Adding Logic MCP Server

Using Claude Code Commands

Important: Run this command in your terminal, not within a Claude Code session.
Add your Logic MCP server using the claude mcp add command:
Parameters:
  • --transport http - Required for HTTP-based MCP servers like Logic
  • [SERVER_NAME] - A name to identify this server (e.g., “logic-docs”)
  • [MCP_SERVER_URL] - Your Logic MCP server URL from organization settings

Managing MCP Servers

List configured servers:
Remove a server:

Using Logic Agents

Once configured, Logic agents are available in your Claude Code sessions.

Verifying Your Connection

To check if your Logic MCP server is connected:
  1. Start a Claude Code session
  2. Type /mcp in your chat
  3. Verify your Logic server shows as connected
If the server appears and shows a connected status, Logic agents are available for use.

Accessing Logic Agents

Claude Code can automatically access your Logic agents based on the conversation context. You can:
  • Ask Claude Code to use specific Logic agents by name
  • Let Claude Code discover and suggest relevant Logic agents
  • Execute Logic agents with parameters as needed
Example usage:
Claude Code will execute the Logic agent and incorporate the results into its response.
Long-running Logic agents are handled asynchronously. Learn more about async task execution.

Next Steps