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.
Install the Anthropic SDK:
pip install anthropic>=0.25.0
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"
)
Use tools in your prompts - TengineAI will handle authentication and execution.
See the Python Quick Start for complete setup instructions and examples.
A comprehensive VS Code usage guide is coming soon.