Labsco
tecton-ai logo

Tecton

β˜… 3

from tecton-ai

Feature engineering assistance using the Tecton platform, integrated with Cursor.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedAccount requiredNeeds API keys

Tecton MCP Server & Cursor Rules

Tecton's Co-Pilot consists of an MCP Server rules for MCP clients such as Cursor and Claude Code. Read this blog to learn much more.

ℹ️ Info: This guide will walk you through setting up the Tecton MCP server with this repository and configuring your feature repository to use it while developing features with Tecton.

Table of Contents

Tecton MCP Tools

The Tecton MCP server exposes the following tools that can be used by an MCP client such as Cursor or Claude Code:

Tool NameDescription
query_example_code_snippet_index_toolFinds relevant Tecton code examples using a vector database. Helpful for finding usage patterns before writing new Tecton code.
query_documentation_index_toolRetrieves Tecton documentation snippets based on a query. Provides context directly from Tecton's official documentation.
get_full_tecton_sdk_reference_toolFetches the complete Tecton SDK reference, including all available classes and functions. Use when a broad overview of the SDK is needed.
query_tecton_sdk_reference_toolFetches the Tecton SDK reference for a specified list of classes or functions. Ideal for targeted information on specific SDK components.
query_tecton_metrics_toolQueries the Tecton Metrics API. Returns point-in-time system metrics in human-readable or raw OpenMetrics format.

ℹ️ API-based Tools: If the MCP server is configured with a TECTON_API_KEY environment variable, the MCP server will register additional API-based tools including Tecton Feature Services and the Metrics API tool. This makes it possible for agents to query online feature services for fresh features from batch, streaming and real-time data sources and access system metrics.

As of June 2025, the following is the stack ranked list of best performing Tecton feature engineering LLMs in Cursor; this list may evolve over time as new models are released:

  • Claude Sonnet 4
  • OpenAI o3
  • Gemini 2.5 pro exp (03-25)

Architecture

The Tecton MCP integrates with LLM-powered editors like Cursor to provide tool-based context and assistance for feature engineering:

Tecton MCP Architecture

The overall flow for building features with Tecton MCP looks like:

Tecton MCP Flow Chart

How to Update the Tecton MCP Server

To update the Tecton MCP server to the latest version:

  1. Pull the latest changes from the repository:

    cd <path-to-local-clone>
    git pull
  2. Close and restart Cursor to ensure the updated MCP server is loaded.

That's it! The MCP server runs as a subprocess spawned by Cursor, so there's no persistent background service to manually stop or restart. Cursor will automatically use the updated code the next time it needs to communicate with the MCP server.

Resources