TengineAI

Using TengineAI from VS Code

VS Code does not have a native TengineAI integration.

To use TengineAI from VS Code, use the Anthropic Python SDK configured to connect to TengineAI's MCP server. Any MCP-compatible model SDK can be used in this setup. Anthropic is shown as the reference implementation.

Quick Setup

  1. Install the Anthropic SDK:

    pip install anthropic>=0.25.0
    
  2. Configure your code to point at TengineAI:

    from anthropic import Anthropic
    
    client = Anthropic(
        api_key="YOUR_ANTHROPIC_API_KEY",
        base_url="https://app.tengine.ai/mcp"
    )
    
  3. Use tools in your prompts - TengineAI will handle authentication and execution.

Full Guide

See the Python Quick Start for complete setup instructions and examples.


A comprehensive VS Code usage guide is coming soon.