Skip to main content
Archived

This project has been archived by its maintainers, and is no longer receiving any updates.

TFModSearch MCP Server

CI CodeQL mypy OpenSSF Scorecard PyPI Python 3.12+ License: MIT

A Model Context Protocol (MCP) server that provides intelligent search capabilities for Terraform AWS module documentation using hybrid search (keyword matching, BM25, and semantic embeddings).

Ready to Use: Includes a pre-built search index with embeddings for 63 curated Terraform AWS modules. Install and run the MCP server immediately—no index building required!

🤔 Why TFModSearch?

When an AI assistant writes Terraform, it often guesses at module names, invents variables that don't exist, or reaches for outdated syntax. TFModSearch gives your assistant a curated, versioned, offline knowledge base of the official terraform-aws-modules — plus a set of vendor-maintained Cloud Posse modules that fill gaps the official set does not cover — so it can:

  • Find the right module from intent — "I need a Redis cache" resolves to elasticache, not a hallucinated module name.
  • Ground generated code in real inputs/outputs — the assistant pulls the full, current module documentation (submodules, variables, outputs, examples) on demand instead of improvising.
  • Stay fast, private, and deterministic — the whole server runs locally on CPU against a pre-built index, fully offline. No external API calls, no rate limits, no network round-trips.
  • Get the complete interface, not a curated excerptget_module's inputs/outputs views return the module's COMPLETE Registry-declared interface in one call, so you never have to guess whether an omitted variable is real.

Think of it as an always-available, searchable reference card for every terraform-aws-modules module — kept accurate and shipped ready to run.

🚀 Features

  • Hybrid Search Engine: Combines keyword matching (IDF-weighted), BM25 text relevance, exact module name matching, and semantic similarity for accurate results
  • Complete Inputs/Outputs for Every Module: get_module's inputs/outputs views serve the module's COMPLETE Registry-sourced interface for all 63 catalog modules — not a curated subset — from a committed per-module artifact (model/any_overlay/); the 22 modules with type = any inputs additionally get the module maintainers' own apply-verified example HCL and observed field names per any-typed variable — all offline and honestly labeled as an example rather than a schema
  • Fully Offline: no networked tools — every response is served from the local pre-built index and committed per-module artifacts; the only network use anywhere in the server is an opt-in daily PyPI update check in HTTP mode
  • MCP Integration: Seamlessly integrates with Claude Desktop and other MCP clients
  • Fast & Efficient: Pre-built search index with CPU-only inference using intfloat/e5-small-v2 model
  • Ready to Use: Includes pre-built index (model/tfmod_e5_small_index.pkl) with embeddings from intfloat/e5-small-v2 model and curated Terraform AWS module documentation
  • Comprehensive Catalog: Access to terraform-aws-modules documentation compiled from official sources with rich metadata
  • Security-First: Built-in path validation and access controls for safe file operations
  • Configurable Weights: Fine-tune search scoring through YAML config or CLI arguments

📋 Table of Contents

📦 Installation

Plugin Install (Claude Code / Codex — Recommended)

The plugin configures the MCP server automatically and adds workflow skills that make the agent search current module documentation before writing Terraform.

Claude Code:

/plugin marketplace add SantyagoSeaman/tfmodsearch
/plugin install tfmod-search@tfmodsearch

Codex CLI:

/plugin marketplace add SantyagoSeaman/tfmodsearch
/plugin install tfmod-search@tfmodsearch

Both bundle:

  • The tfmod-search MCP server (runs via uvx tfmodsearch by default — uv required; the Claude Code plugin can optionally run it via Docker instead, see Docker below)
  • Seven skills:
    • aws-terraform-modules — auto-invoked when writing Terraform for AWS: search first, write from current docs, pin versions
    • /tf-module <query> — instant module lookup with a ready-to-paste snippet
    • /tf-stack <requirement> — scaffold a multi-module stack with correct output→input wiring
    • tf-migrate — replace hand-written aws_* resources with a covering module, verified attribute-by-attribute
    • tf-module-upgrade — audit pinned versions and variable usage against current docs
    • tf-review — review a diff or PR's module usage
    • tf-troubleshoot — diagnose terraform failures; ships a prefilter script that reduces logs of any size to just the diagnostics
  • Two subagents (Claude Code): tf-log-analyst and tf-diff-reviewer analyze large logs and diffs in an isolated context, so your session only sees the findings

Quick Install (Any MCP Client)

The server is on PyPI — no need to clone the repository.

Install uv first (if not already installed):

curl -LsSf https://astral.sh/uv/install.sh | sh

Then add to your MCP client config:

{
  "mcpServers": {
    "terraform-modules": {
      "command": "uvx",
      "args": ["tfmodsearch"]
    }
  }
}

Tip: Run uvx tfmodsearch --warmup once after installing — it pre-downloads the embedding model (~130 MB) and verifies the server end-to-end, so the first real query is instant.

Bundled and ready: The pre-built search index and all 63 module docs ship inside the package, so uvx fetches, installs, and runs the server with nothing to clone or rebuild. (The intfloat/e5-small-v2 embedding model — ~130 MB — is downloaded automatically on the first search to encode your query, then cached for subsequent queries.)

Note: If you get "command not found" error, use the full path to uvx:

# Find uvx location
which uvx
# Example output: /Users/username/.local/bin/uvx

Then use the full path in your config:

"command": "/Users/username/.local/bin/uvx"

🐳 Docker (opt-in)

uvx tfmodsearch stays the documented default. An official Docker image is also published to GHCR for environments that prefer or require a container — air-gapped/offline setups, CI runners without a Python/uv toolchain, or teams that standardize MCP server deployment on Docker. The image bakes in the embedding model, the search index, and the NLTK tokenizer data at build time, so all three tools — search_modules, get_module, and modules_list — make zero network calls at runtime; a --network none run works for every tool call, not just the warmup.

Since 0.19.0, the image runs the ONNX encode backend instead of torch: model.onnx + tokenizer.json are baked in at build time (see "Embedding backends" below) instead of the torch/sentence-transformers stack and its HF model cache. Measured: 1.42 GB → 559 MB uncompressed (pull size verified post-release), same search results — validated at cosine ≥ 0.99999988 (max elementwise diff 4.06e-07) against sentence-transformers across all 162 golden queries, plus ~5x faster query encoding on CPU. uvx tfmodsearch / PyPI installs are unaffected — they keep torch by default.

Any MCP client, launch the image directly (never add -t/--tty — it corrupts the stdio JSON-RPC stream):

{
  "mcpServers": {
    "terraform-modules": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/santyagoseaman/tfmodsearch:0.25.0"]
    }
  }
}

Claude Code plugin, the bundled launcher defaults to uvx and switches to Docker when TFMODSEARCH_DOCKER=1 is set (in ~/.claude/settings.json's env block, or exported before launching Claude Code):

export TFMODSEARCH_DOCKER=1
# optional: pin a different tag
export TFMODSEARCH_IMAGE=ghcr.io/santyagoseaman/tfmodsearch:0.25.0

If Docker is requested but not on PATH, the launcher falls back to uvx with a warning instead of failing. This dual-mode launcher currently applies to the Claude Code plugin only — the Codex plugin stays uvx-only (Codex CLI doesn't yet reliably resolve a plugin-relative path in its mcp.json).

Note: the Claude Code plugin now launches via a bundled python3 launcher script instead of calling uvx directly, so a python3 interpreter on PATH is a prerequisite for the plugin (in addition to uv/uvx) — on macOS/Linux this is normally already present; on Windows, make sure python3 (not just python/the py launcher) resolves on PATH.

Verify the offline property yourself:

docker run --network none -i --rm ghcr.io/santyagoseaman/tfmodsearch:0.25.0 --warmup

🌐 Shared HTTP instance (opt-in)

stdio is one server process per client session: every MCP client (and every subagent it spawns) starts its own process, and each process loads the ~600 MB embedding model on its own. Fan a task out across N subagents and you pay for N model loads — the cost multiplies with fan-out. Streamable HTTP transport (since 0.16.0) inverts that: one long-lived shared instance, many clients connect to it by URL. The model and index load once; the main session and every subagent share that single instance.

This is an operator-managed opt-in mode — stdio via uvx tfmodsearch remains the default for both the plugin and every install path above. Reach for HTTP only when you want one daemon shared across sessions/subagents on a machine.

Quickstart (Docker):

docker run -d --name tfmodsearch-http --restart unless-stopped \
  -p 127.0.0.1:8765:8765 \
  ghcr.io/santyagoseaman/tfmodsearch:0.25.0 \
  --transport http --host 0.0.0.0 --port 8765

Or with the bundled docker-compose.yml (same recipe, one command):

docker compose up -d

Quickstart (no Docker):

tfmodsearch --transport http

Then point Claude Code at the running daemon (URL, not a command):

claude mcp add --transport http --scope user tfmod-search http://127.0.0.1:8765/mcp

Keeping the plugin (proxy mode, recommended since 0.18.0): plugin users do not have to choose between the skills and the shared daemon anymore. Set one env var and the plugin's bundled server becomes a lightweight stdio proxy to the daemon — skills, subagents, and the auto-search workflow all keep working, and the 600 MB model loads only once, in the daemon:

// ~/.claude/settings.json
{ "env": { "TFMODSEARCH_URL": "1" } }               // default daemon on 127.0.0.1:8765
// or a custom target:
{ "env": { "TFMODSEARCH_URL": "http://127.0.0.1:9000/mcp" } }

The launcher health-checks the daemon first (3 s): if it is not responding — including while the daemon is still warming up after a restart — the session falls back to the normal local server with a stderr warning, so a stopped daemon never breaks the session (that fallback pays the full local model load; retry once the daemon reports healthy). A bare origin like http://127.0.0.1:8765 works too — the /mcp path is added automatically. The proxy runs via uvx --from "tfmodsearch>=0.18.0", so uv must be able to resolve that release (first use needs network or a warm uv cache). Point TFMODSEARCH_URL only at a daemon you trust: the proxy forwards every tool call there verbatim. TFMODSEARCH_URL takes precedence over TFMODSEARCH_DOCKER. Rollback: unset the var. Any MCP client can use the same mode without the plugin: tfmodsearch --proxy-url <url>.

Migrating from the plugin (plugin-less setups): if you do not want the plugin at all, make sure only one tfmod-search server is registered. Disable the plugin, then add the HTTP entry:

claude plugin disable tfmod-search
claude mcp add --transport http --scope user tfmod-search http://127.0.0.1:8765/mcp

The HTTP daemon exposes the exact same three tools, so agent workflows keep working. To go back: claude mcp remove tfmod-search and re-enable the plugin.

Codex CLI: the plugin stays stdio-only, but recent Codex CLI versions can connect to a streamable HTTP MCP server directly in ~/.codex/config.toml:

[mcp_servers.tfmod-search]
url = "http://127.0.0.1:8765/mcp"

(Check your Codex version supports HTTP MCP servers; remove the plugin's stdio entry first, same one-server rule as above.)

Readiness: poll the health endpoint (no MCP handshake needed). The server loads the index and warms the embedding model before it starts listening, so expect connection-refused during startup, then 200 once the port is up:

curl -s http://127.0.0.1:8765/health
# {"status": "ok", "version": "0.25.0", "modules": 63,
#  "latest_version": null, "update_available": false}

Configuration (CLI flags take precedence over env vars, which take precedence over the defaults below):

Setting Flag Env var Default
Transport --transport {stdio,http} TFMODSEARCH_TRANSPORT stdio
Host --host TFMODSEARCH_HOST 127.0.0.1
Port --port TFMODSEARCH_PORT 8765

Lifecycle ownership: the operator owns the daemon — start it, keep it running (--restart unless-stopped / the compose healthcheck), and stop it. MCP clients never auto-start or manage it; if the daemon is down, Claude Code shows the tfmod-search server as failed/disconnected and its tools disappear until the daemon is back. That's the trade-off for sharing one instance across sessions.

Managing the daemon:

docker compose down                # stop (or: docker rm -f tfmodsearch-http)
docker logs -f tfmodsearch-http    # server + uvicorn logs (READY line, warnings, tracebacks)
# upgrade when a new release ships: bump the pinned tag in docker-compose.yml, then
docker compose pull && docker compose up -d

The compose file mounts a named volume (tfmodsearch-cache) over /home/app/.cache; this historically persisted the now-removed grep_module_docs registry-doc cache and is currently unused, kept for forward compatibility with any future on-disk cache. Running the non-Docker variant as a daemon is on you (a terminal multiplexer, nohup, or a launchd/systemd unit) — the server itself is just a foreground process.

Update notifications (since 0.17.0): a pinned image tag means the daemon otherwise runs forever with no signal that a newer release exists. In HTTP mode the server checks PyPI once a day and surfaces what it finds through three channels — curl /health gains latest_version/ update_available fields, a WARNING lands in docker logs once per cycle while stale, and an update_notice field appears on search_modules/modules_list responses (absent entirely when there is nothing to report) so your agent can relay it directly. Nothing auto-updates — the operator still owns bumping the tag and running docker compose pull && docker compose up -d. Set TFMODSEARCH_UPDATE_CHECK=0 to disable the check entirely (air-gapped deployments). Privacy: the check is one anonymous GET to the public PyPI JSON API — nothing about you or your host is sent.

Do not run both the plugin's stdio entry and the HTTP entry at the same time. Two tfmod-search MCP servers registered simultaneously present duplicate toolsets and confuse agents about which one to call. Remove or disable the plugin's stdio entry before adding the HTTP entry (or vice versa).

Security: the HTTP transport has no authentication and no TLS. Keep the port loopback-only (127.0.0.1:8765:8765, not 0.0.0.0:8765:8765) and never expose it directly to a network without a reverse proxy in front that adds auth. Binding 0.0.0.0 inside the container is expected and fine — the container's own loopback would make the published port unreachable — the actual security boundary is the host port mapping (-p 127.0.0.1:8765:8765), which restricts reachability to the host's loopback interface.

Prerequisites

  • Python 3.12 or higher
  • uv (recommended) or pip

Local Installation (For Development)

# Clone the repository
git clone https://github.com/SantyagoSeaman/tfmodsearch.git
cd tfmodsearch

# Create virtual environment and install dependencies
uv venv --python 3.12
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
uv pip install -e .

Using pip

# Clone the repository
git clone https://github.com/SantyagoSeaman/tfmodsearch.git
cd tfmodsearch

# Create virtual environment and install dependencies
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -e .

Ready to Go: The repository includes a pre-built search index, so you can skip the index building step and run the MCP server immediately after installation!

🏃 Quick Start

1. Build the Search Index (Optional)

Note: This repository includes a pre-built search index at model/tfmod_e5_small_index.pkl with embeddings for 63 curated Terraform AWS modules. You can skip this step and proceed directly to testing or running the server if you want to use the included modules.

To rebuild the index or create a new one with additional modules:

python src/tfmod_search_cli.py index \
  --docs_dir ./modules/terraform-aws-modules

Note: The first run will download the intfloat/e5-small-v2 model (~130MB).

2. Test the Search (CLI)

Test the search functionality using the command-line interface:

python src/tfmod_search_cli.py search \
  --query "s3 bucket with kms encryption and versioning" \
  --top_k 5

Claude Code CLI Integration

Prefer the plugin install — it configures the server and adds the workflow skills in two commands.

Option 1: Using uvx (No Clone Required)

claude mcp add terraform-modules -- uvx tfmodsearch

Or add to your Claude Code settings (~/.claude/settings.json):

{
  "mcpServers": {
    "terraform-modules": {
      "command": "uvx",
      "args": ["tfmodsearch"]
    }
  }
}

Note: If uvx is not found, use the full path (run which uvx to find it):

"command": "/Users/username/.local/bin/uvx"

Option 2: Using Local Installation

# Add the MCP server (replace with your actual path)
claude mcp add --transport stdio terraform-modules -- \
  /absolute/path/to/tfmodsearch/.venv/bin/python \
  /absolute/path/to/tfmodsearch/src/tfmod_mcp_server.py

# Verify the server was added
claude mcp list

Or manually add to your Claude Code settings (~/.claude/settings.json):

{
  "mcpServers": {
    "terraform-modules": {
      "command": "/absolute/path/to/tfmodsearch/.venv/bin/python",
      "args": [
        "/absolute/path/to/tfmodsearch/src/tfmod_mcp_server.py"
      ]
    }
  }
}

Claude Desktop Integration

Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

Option 1: Using uvx (Recommended - No Clone Required)

{
  "mcpServers": {
    "terraform-modules": {
      "command": "uvx",
      "args": ["tfmodsearch"]
    }
  }
}

Note: If uvx is not found, use the full path (run which uvx to find it):

"command": "/Users/username/.local/bin/uvx"

Option 2: Using Local Installation

{
  "mcpServers": {
    "terraform-modules": {
      "command": "/absolute/path/to/tfmodsearch/.venv/bin/python",
      "args": [
        "/absolute/path/to/tfmodsearch/src/tfmod_mcp_server.py"
      ]
    }
  }
}

Codex CLI Integration

Prefer the plugin install — it configures the server and adds the workflow skills in two commands.

For manual setup, register the server globally:

codex mcp add tfmod-search -- uvx tfmodsearch

Or add to ~/.codex/config.toml (global) or .codex/config.toml (per project):

[mcp_servers.tfmod-search]
command = "uvx"
args = ["tfmodsearch"]
startup_timeout_sec = 30   # default 10s is tight while the embedding model loads

First run: execute uvx tfmodsearch --warmup once beforehand — it downloads the embedding model (~220 MB) so server startup stays well within the timeout.

To nudge Codex (or any agent) to use the server proactively, add a line to your project's AGENTS.md (or CLAUDE.md for Claude Code):

Before writing Terraform that uses AWS, call the tfmod-search MCP server:
search_modules to find the module, then get_module for current variable
names and versions. Do not write module blocks from memory.

GitHub Copilot Integration (VS Code)

Add the MCP server to GitHub Copilot in VS Code (requires VS Code 1.99+):

Step 1: Create .vscode/mcp.json in your project root (or open user-level config via Command Palette: "MCP: Open User Configuration"):

Option 1: Using uvx (Recommended - No Clone Required)

{
  "servers": {
    "terraform-modules": {
      "type": "stdio",
      "command": "uvx",
      "args": ["tfmodsearch"]
    }
  }
}

Note: If uvx is not found, use the full path (run which uvx to find it).

Option 2: Using Local Installation

{
  "servers": {
    "terraform-modules": {
      "type": "stdio",
      "command": "/absolute/path/to/tfmodsearch/.venv/bin/python",
      "args": [
        "/absolute/path/to/tfmodsearch/src/tfmod_mcp_server.py"
      ]
    }
  }
}

Step 2: Click the "Start" button that appears at the top of the mcp.json file to initialize the server.

Step 3: Open GitHub Copilot Chat, select Agent mode from the popup menu, and click the tools icon to verify the terraform-modules server and its tools are available.

Alternative setup via Command Palette:

  1. Open Command Palette (Cmd+Shift+P on macOS / Ctrl+Shift+P on Windows/Linux)
  2. Run "MCP: Add Server"
  3. Select "stdio" as the server type
  4. Enter terraform-modules as the server name
  5. Enter the Python path as the command
  6. Enter the script path as the argument

Managing MCP Servers:

  • "MCP: List Servers" — view installed servers and available actions
  • "MCP: Reset Cached Tools" — refresh tool discovery if tools don't appear
  • "MCP: Show Output" — debug server connection issues

For more details, see VS Code MCP documentation and GitHub Copilot MCP guide.

📖 Usage

1. Building the Index

Note: The repository includes a pre-built index—you only need to build a new index if you want to add more modules or customize the existing ones.

Build or rebuild the search index from your module documentation:

python src/tfmod_search_cli.py index \
  --docs_dir ./modules/terraform-aws-modules \
  --index_path ./model/tfmod_e5_small_index.pkl

Options:

  • --docs_dir: Directory containing Terraform module markdown files (required)
  • --index_path: Output path for the pickled index file (optional, defaults to ./model/tfmod_e5_small_index.pkl)
  • --model: Sentence transformer model to use (default: intfloat/e5-small-v2)

2. CLI Search (Standalone)

Search for modules without running the MCP server:

# Search by functionality
python src/tfmod_search_cli.py search \
  --query "kubernetes cluster management" \
  --top_k 3

# Search by exact module name
python src/tfmod_search_cli.py search \
  --query "vpc" \
  --top_k 5

# Search with custom weights
python src/tfmod_search_cli.py search \
  --query "object storage" \
  --w_kw 2.5 \
  --w_exact 4.0 \
  --w_bm25 1.5 \
  --w_sem 1.0

# Search with optional query instruction for BGE models
python src/tfmod_search_cli.py search \
  --query "s3" \
  --query-instruction "Represent this sentence for searching relevant passages: "

🛠️ MCP Tools

The MCP server exposes three tools for Terraform module discovery and documentation retrieval — fully offline, no networked tools:

modules_list()

List all available Terraform modules in the catalog.

Parameters: None

Returns: Complete list of modules with names, paths, descriptions, keywords, and registry coordinates (module_id, latest_version).

Example:

{
  "modules": [
    {
      "module_name": "vpc",
      "path": "modules/terraform-aws-modules/vpc.md",
      "description": "Terraform module to create AWS VPC resources...",
      "keywords": ["vpc", "subnet", "networking", "aws"],
      "module_id": "terraform-aws-modules/vpc/aws",
      "latest_version": "6.6.1"
    }
  ],
  "count": 63
}

search_modules(query: str, top_k: int = 3)

Search for Terraform modules using keywords, exact names, or natural language queries.

Parameters:

  • query (string): Free-text search query
  • top_k (int, optional): Number of results to return, 1–10 (default 3). Raise it for ambiguous queries like "iam".

Returns: Top-ranked modules with metadata and relevance scores. Each hit also carries module_id (the registry coordinate, e.g. terraform-aws-modules/vpc/aws) and latest_version for reference.

Example queries:

  • "vpc" - Find VPC module by exact name
  • "object storage with encryption" - Natural language search
  • "kubernetes cluster management" - Find EKS module
  • "serverless functions" - Find Lambda module

get_module(module_identifier: str, sections: list[str] | None = None)

Get documentation for a specific Terraform module. By default returns a compact orientation head — not the full document — so a first orientation call stays small (large modules run to 10k+ tokens in full).

Parameters:

  • module_identifier (string): Module name (e.g., "vpc"), relative path (e.g., "modules/terraform-aws-modules/vpc.md"), or submodule address (e.g., "iam//modules/iam-role", or the full "terraform-aws-modules/iam/aws//modules/iam-role") — returns an orientation head scoped to that submodule's section in one call, instead of the whole parent doc.
  • sections (list of strings, optional): Control what comes back.
    • Omitted → the orientation head: description, module info, an exact version-pin hint, notes for AI agents, any Important Gotchas the doc carries, key features, use cases, plus a footer with the full section inventory — an explicit menu of the logical keys and every heading in the doc — so the next call knows exactly what it can request. The footer also flags that the curated prose (description, examples, best practices) is a hand-picked subset and points to module source for resource-creation conditions and for a map(object)/any field's nested type/shape; the inputs/outputs table itself is already the module's complete Registry-declared interface (see below), so get_module(sections=["inputs", "outputs"]) is the exhaustive-confirmation / name-exists check, in one offline call. For a module with submodules, the head also inlines the compact submodule inventory — each submodule's name, purpose, and pinnable source string — so when the right answer is a submodule you can pin its source or drill in via the submodule address above.
    • Logical keys or heading substrings → those sections added on top of the always-included core. Accepts inputs, outputs, examples, submodules, features, use-cases, best-practices, resources, or case-insensitive substrings of headings (e.g. "karpenter" for a single EKS submodule). The inputs/outputs/examples keys also resolve on modules that bundle their interface into a combined Main Module:/Root Module: section or spread it across submodules.
    • ["all"] (or "full"/"everything") → the complete document verbatim.

Returns: The compact orientation head by default, a filtered subset when specific sections are requested, or the complete markdown document when an all/full key is given.

Complete inputs/outputs interface: get_module's inputs and outputs views (sections=["inputs"]/["outputs"], an all/full request, or a submodule-scoped request) serve the module's COMPLETE Registry-declared interface — every input (name, type, required, default, description) and every output (name, description) — for all 63 catalog modules, superseding the curated Markdown table wherever that table was only a hand-picked subset. For example, rds curates 41 of its 111 root-level inputs (238 across all submodules) in the doc body; the complete table now surfaces all of them in one call. sections=["inputs"]/["outputs"]/["inputs", "outputs"] render the root scope only by default; a submodule's complete interface is one more call away via the submodule address (get_module("eks//modules/karpenter", sections=["inputs"])), and the root response's footer lists the available submodule scopes by name. This is sourced from a committed per-module artifact, model/any_overlay/<id>.json (built by scripts/build_any_overlay.py from the Terraform Registry API detail at the doc's own pinned version) — a plain file read at serve time, so get_module stays fully offline.

Any-typed input overlay: on top of the complete table, some Registry inputs are declared type = any, where the type string alone does not describe the shape. The 22 catalog modules with at least one such input additionally get, per any-typed variable, the module maintainers' own apply-verified example HCL for that variable (pulled from the module's own examples/) plus a list of field names observed in the module source. Every appendix is honestly labeled: an apply-verified example from a named module version, explicitly not a schema — for the field's exact nested type/shape beyond the example, consult the module source directly — with a version-skew note when the overlay's source version differs from the doc's pinned version. The default orientation head only gets a lightweight pointer (any — see sections=["inputs"]) rather than the full appendix, to keep the head small. The other 41 modules — no any-typed input — still get the complete table above; they carry no example/field-name appendix since none of their inputs need one.

Security: Only files under the modules/ directory are accessible. Absolute paths and path traversal attempts are rejected.

Typical Workflow

A coding assistant discovers and uses a module in two steps:

  1. Search by intent — the assistant turns a natural-language need into a module:

    search_modules("managed kubernetes cluster with node groups")
    → eks (score 8.9), eks-pod-identity (2.1), autoscaling (1.7)
    
  2. Orient, then drill in — it pulls a compact orientation head, then requests the parts it needs:

    get_module("iam")
    → IAM orientation head: what it is, exact version pin + the submodule inventory
      inline (iam-role, iam-policy, iam-oidc-provider, … each with a pinnable source)
    get_module("iam//modules/iam-role")
    → head scoped to the iam-role submodule (its trust policy, OIDC, inputs) in one call
    

The assistant then writes Terraform using real variable names and current syntax — instead of guessing. search_modules returns the top 3 candidates by default (raise top_k for broader queries) so the assistant can disambiguate between closely related modules (e.g. alb vs elb, rds vs rds-aurora) before committing. get_module returns a small orientation head by default so the first call never overflows; scoped sections=["inputs", "examples"] pull only what's needed, and sections=["all"] returns the complete document when the whole thing is genuinely wanted.

For a pinpoint lookup — the exact name/default of one variable, or how a specific feature is wired — get_module(name, sections=["inputs", "outputs"]) renders the module's complete root-scope interface in one offline call:

get_module("eks", sections=["inputs", "outputs"])
→ the exact input row + its default + every other declared input/output — no full-document dump

Tool boundaries: search_modules finds the right AWS module; get_module returns its curated, compact, offline doc, or the module's complete interface on request. A module outside the curated AWS catalog or at a specific older version falls outside these three tools' scope — use your other Terraform Registry tooling for those.

⚙️ Configuration

Search Weights Configuration

Create a config.yaml file in the project root to customize search scoring weights:

# Optional query instruction for BGE models (improves short query retrieval)
# Set to null to disable (default), or use:
# query_instruction: "Represent this sentence for searching relevant passages: "
query_instruction: null

search_weights:
  w_kw: 1.0      # Keyword overlap weight (IDF-weighted)
  w_exact: 3.0   # Exact module name match boost
  w_bm25: 2.0    # BM25 text relevance weight
  w_sem: 3.0     # Semantic similarity weight

The values above are the weights shipped in the repo's config.yaml (bundled with the package), so they are what the server uses out of the box.

Configuration Precedence (highest to lowest):

  1. CLI arguments (--w_kw, --w_exact, --query-instruction, etc.)
  2. config.yaml file
  3. Built-in defaults

Embedding backends

Query and index encoding go through a small backend seam, selected via TFMODSEARCH_EMBED_BACKEND:

Value Behavior
auto (default) Use the torch/sentence-transformers backend if sentence-transformers is importable; otherwise fall back to the ONNX backend if ONNX assets are found; otherwise a clear error naming both options.
torch Force the sentence-transformers path (unchanged since prior releases).
onnx Force the ONNX path: a tokenizers tokenizer plus an onnxruntime CPU session, replicating sentence-transformers mean pooling + L2 normalization for intfloat/e5-small-v2. Validated at cosine ≥ 0.99999988 (max elementwise diff 4.06e-07) against sentence-transformers across all 162 golden queries, and ~5x faster to encode a query on CPU.

TFMODSEARCH_ONNX_MODEL_DIR points the ONNX backend at a directory containing model.onnx + tokenizer.json (defaults to <project_root>/onnx/e5-small-v2 if unset, which is where the official Docker image bakes them).

uvx tfmodsearch / PyPI installs keep torch — the core dependency set is unchanged, so nothing to opt into for a normal local install. The ONNX bits are an optional extra: pip install "tfmodsearch[onnx]" (adds onnxruntime>=1.20 and tokenizers>=0.21), plus ONNX assets — python scripts/export_onnx_model.py <output_dir> exports intfloat/e5-small-v2 (requires optimum-onnx/torch at export time only, and the script lives in the repo, not the wheel — clone the repo to run it) and prints a parity check against sentence-transformers when both are installed. Note the extra adds packages, it cannot remove torch from a pip install (Python extras only add): the torch-free ~559 MB footprint is a property of the official Docker image, which is built without sentence-transformers entirely. The extra is mainly useful if you want the ONNX code path outside that image.

Module Documentation Format

Terraform module documentation files should be Markdown with YAML front-matter:

---
module_name: terraform-aws-vpc
keywords: [vpc, subnet, networking, aws]
---

# Terraform AWS VPC Module

Module description and documentation...

👩‍💻 Development

Setting Up Development Environment

# Clone the repository
git clone https://github.com/SantyagoSeaman/tfmodsearch.git
cd tfmodsearch

# Install with development dependencies
uv pip install -e ".[dev]"

# Install pre-commit hooks
pre-commit install

Development Dependencies

The project includes the following development tools:

  • pytest: Testing framework with async support
  • ruff: Fast Python linter and formatter
  • mypy: Static type checker
  • pre-commit: Git hooks for code quality

Code Quality

# Run linter (includes flake8-bandit `S` security rules)
ruff check src/ tests/

# Run formatter
ruff format src/ tests/

# Run type checker
mypy src/

# Run all checks (linter + formatter + type checker)
pre-commit run --all-files

🧪 Testing

The project includes comprehensive integration tests covering all major functionality.

Running Tests

# Run all tests
pytest tests/ -v

# Run specific test suite
pytest tests/integration/test_all_modules_searchable.py -v  # Searchability, all 63 modules (196 tests)
pytest tests/integration/test_model_comparison.py -v -s     # Model comparison (31 tests)
pytest tests/integration/test_mcp_server.py -v              # MCP server tools (40 tests)
pytest tests/integration/test_registry_docs.py -v          # parse_module_id + overlay-build fetch helpers
pytest tests/integration/test_parse_markdown.py -v          # Markdown parsing (14 tests)
pytest tests/integration/test_cli_index.py -v               # CLI index building (4 tests)
pytest tests/integration/test_security_config.py -v         # Security config contract (5 tests)

# Run the opt-in live tests (real calls to the public Terraform Registry)
RUN_REGISTRY_BENCHMARK=1 pytest tests/integration/test_registry_comparison.py -v -s

# Run with coverage
pytest tests/ --cov=src --cov-report=term-missing --cov-report=html

Test Coverage

  • All Modules Searchable (196 tests): every one of the 63 modules is verified findable by keyword, exact name, and natural-language query (target in top-3), plus catalog metadata and search-quality checks
  • Model Comparison (31 tests): embedding model performance comparison with timing analysis
  • MCP Server (65 tests): search_modules, get_module, and modules_list tools, top_k and sections parameters (orientation-head default, inline submodule inventory, submodule-address scoped head, all/full escape hatch, combined/submodule interface-key resolution, version-pin hint), module_id/latest_version fields, security validation, integration workflows
  • Doc Schema (441 tests): schema-integrity guards over all 63 curated docs — universal core headings present and unique (incl. the orientation head's own Key Features + Main Use Cases), a recognised interface scheme (split / combined Main Module: / submodule-only), inputs/outputs/examples resolving on every doc, a clean orientation head, and every doc's submodule inventory surfaced in the head — so get_module section filtering can't silently break
  • End-to-End (59 tests): real MCP stdio protocol sessions against a spawned server process, wheel payload and entry-point verification, uvx packaged-server smoke test, plugin manifest/skill/agent contracts for Claude Code and Codex, skill-script tests (terraform log prefilter), live plugin install via the claude CLI
  • Module ID header (1 test): every curated doc carries a Module ID bullet equal to its root registry Source
  • Markdown Parsing (14 tests): ## Module Information parsing (name, keywords, module_id, latest_version), description extraction, normalization
  • CLI Index Building (4 tests): index creation, validation, search integration
  • Security Config (5 tests): the Dependabot config, SECURITY.md reporting policy, both workflows' least-privilege permissions, and the publish job's retained OIDC id-token: write grant
  • Registry Comparison (5 tests): top-1/top-3 retrieval benchmark vs. the public Terraform Registry (see Registry Search Comparison); one network-free guard runs always, the four live tests are opt-in via RUN_REGISTRY_BENCHMARK=1

Total: 1130 tests (integration + e2e; 1103 passing, 27 skipped — 6 opt-in live tests unless RUN_REGISTRY_BENCHMARK=1, plus docs with no submodule inventory skipped by the schema guard)

🔒 Security

TFModSearch is a local, CPU-only server with no networked tools — every response comes from the local pre-built index and committed per-module artifacts. The only network use anywhere in the server is an opt-in daily PyPI update check in HTTP mode (see "Update notifications" above). Supply-chain and code hygiene are enforced with GitHub-native tooling:

  • Vulnerability reporting: see SECURITY.md — please use GitHub Private Vulnerability Reporting rather than a public issue.
  • CodeQL default setup runs static analysis on every pull request and on a weekly schedule.
  • Dependabot opens weekly GitHub Actions version-updates and automatic security-update PRs for vulnerable dependencies.
  • Secret scanning + push protection are enabled on the repository.
  • ruff S (flake8-bandit) security lint runs in CI, and the registry fetch refuses any non-https URL.
  • Least-privilege CI: workflows run with permissions: contents: read; PyPI publishing uses OIDC Trusted Publishing (no long-lived token) with PEP 740 attestations.

🏗️ Architecture

Included Content

This repository includes:

  • Pre-built Search Index (model/tfmod_e5_small_index.pkl):

    • Ready-to-use search index with pre-computed embeddings using intfloat/e5-small-v2 model
    • Contains BM25 corpus, semantic vectors, and keyword IDF scores
    • Includes 63 curated Terraform AWS modules
    • File size: ~4.87 MB
  • Curated Module Documentation (modules/terraform-aws-modules/ + modules/cloudposse/):

    • Compiled documentation for 63 Terraform AWS modules covering compute, storage, networking, databases, security, and more
    • 55 sourced from the official terraform-aws-modules project, plus 8 vendor-maintained Cloud Posse gap-fillers (aws-config, ses, vpc-peering, security-hub, guardduty, cloudtrail, backup, sso); provenance is preserved in each doc's Module ID / Source
    • Formatted as Markdown with a ## Module Information metadata block
    • Each module includes comprehensive documentation with best practices, use cases, and examples

Indexed Modules

The search index includes 63 Terraform AWS modules across multiple service categories. Each module is documented with comprehensive descriptions, best practices, use cases, and integration examples.

Compute & Containers:

  • app-runner - Containerized web application deployments
  • autoscaling - EC2 Auto Scaling Groups
  • batch - AWS Batch for batch computing workloads
  • ec2-instance - EC2 virtual machines
  • ecs - Elastic Container Service
  • eks - Elastic Kubernetes Service
  • eks-pod-identity - EKS Pod Identity configuration
  • lambda - Serverless functions

Networking:

  • alb - Application Load Balancer
  • customer-gateway - VPN customer gateway
  • elb - Classic Load Balancer
  • transit-gateway - Transit Gateway for network hub
  • vpc - Virtual Private Cloud
  • vpn-gateway - VPN Gateway and Site-to-Site VPN

Storage:

  • ebs-optimized - EBS optimization validation
  • ecr - Elastic Container Registry
  • efs - Elastic File System
  • fsx - FSx file systems (Lustre, ONTAP, OpenZFS, Windows)
  • s3-bucket - S3 object storage

Databases:

  • dms - Database Migration Service
  • dynamodb-table - DynamoDB NoSQL database
  • elasticache - ElastiCache (Redis, Memcached)
  • memory-db - MemoryDB for Redis
  • opensearch - OpenSearch search and analytics
  • rds - Relational Database Service
  • rds-aurora - Aurora serverless databases
  • rds-proxy - RDS Proxy for connection pooling
  • redshift - Redshift data warehouse

Security & Identity:

  • acm - AWS Certificate Manager
  • iam - Identity and Access Management
  • key-pair - EC2 key pairs
  • kms - Key Management Service
  • secrets-manager - Secrets Manager
  • security-group - VPC security groups
  • wafv2 - AWS WAF v2 web application firewall

Monitoring & Logging:

  • cloudwatch - CloudWatch logs and metrics
  • datadog-forwarders - Datadog log forwarding
  • managed-service-grafana - Amazon Managed Grafana
  • managed-service-prometheus - Amazon Managed Prometheus

Application Integration:

  • apigateway-v2 - API Gateway HTTP and WebSocket APIs
  • appsync - GraphQL API service
  • eventbridge - Event-driven architecture
  • msk-kafka-cluster - Managed Streaming for Kafka
  • sns - Simple Notification Service
  • sqs - Simple Queue Service
  • step-functions - Serverless workflow orchestration

Content Delivery & Network Security:

  • cloudfront - CloudFront CDN
  • global-accelerator - Global Accelerator for performance
  • network-firewall - AWS Network Firewall
  • route53 - DNS and domain management

Developer Tools & Automation:

  • appconfig - Application configuration management
  • atlantis - Terraform pull request automation
  • notify-slack - Slack notification integration
  • ssm-parameter - Systems Manager Parameter Store

Big Data & Analytics:

  • emr - Elastic MapReduce (Hadoop, Spark) for big data processing

Cloud Posse (vendor-maintained gap-fillers, modules/cloudposse/):

  • config - AWS Config compliance rules and multi-account aggregation
  • ses - Simple Email Service domains and SMTP credentials
  • vpc-peering - Same-account VPC peering connections
  • security-hub - Security Hub findings aggregation and security standards
  • guardduty - GuardDuty threat detection
  • cloudtrail - CloudTrail API-activity logging into an encrypted S3 bucket
  • backup - AWS Backup plans, vaults, and selections
  • sso - IAM Identity Center (AWS SSO) permission sets and account assignments

All modules include detailed documentation with:

  • Module metadata and version information
  • Comprehensive feature descriptions
  • Real-world use cases
  • Security and operational best practices
  • Integration examples and code snippets
  • Links to official AWS documentation

Components

  1. Search Library (src/tfmod_search_lib.py)

    • Core search engine with hybrid scoring (keyword + BM25 + semantic)
    • Index building and management
    • Markdown parsing with YAML front-matter support
  2. CLI Tool (src/tfmod_search_cli.py)

    • Command-line interface for index building and testing
    • Two subcommands: index and search
  3. MCP Server (src/tfmod_mcp_server.py)

    • FastMCP-based stdio server
    • Exposes search and retrieval tools
    • Configuration management and logging

Data Flow

Documentation (.md files)
    ↓
CLI builds index (parse + embed + BM25)
    ↓
Pickled index file (.pkl)
    ↓
MCP server loads index
    ↓
Tools: search_modules, get_module, modules_list
    ↓
Claude Desktop / MCP Clients

Search Scoring Algorithm

The hybrid search combines four signals with configurable weights:

  1. Keyword Overlap (w_kw): IDF-weighted keyword matching
  2. Exact Match (w_exact): Boost for exact module name matches
  3. BM25 (w_bm25): Statistical text relevance (Okapi BM25)
  4. Semantic Similarity (w_sem): Cosine similarity of neural embeddings

All scores are min-max normalized before weighted combination.

Embedding Model Comparison

The project supports any sentence-transformers model via --model. The table below benchmarks 5 candidates against the full catalog: all 54 modules, each queried 3 ways (exact name, keyword, natural language) — 162 queries per model — using the production search weights from config.yaml.

Model Dim Size Build Avg Query Success Rate (top-3)
intfloat/e5-small-v2(default, since 0.6.0) 384 ~138 MB ~4.1s ~8 ms 100.0%
BAAI/bge-base-en-v1.5 (default through 0.5.0) 768 ~419 MB ~7.5s ~23 ms 100.0%
thenlper/gte-small 384 ~65 MB ~3.9s ~8 ms 98.8%
BAAI/bge-small-en-v1.5 384 ~129 MB ~4.1s ~8 ms 98.8%
sentence-transformers/all-MiniLM-L12-v2 384 ~129 MB ~3.0s ~8 ms 98.1%

Why e5-small-v2: it's the only smaller model that matches bge-base-en-v1.5's 100% success rate on this corpus — at ~3x smaller and ~3x faster per query, with no weight retuning or query/passage prompt prefixes required (both were tried; neither moved the needle on this corpus). gte-small is the smallest option (~65 MB, ~6x smaller than the old default) and is a reasonable choice if binary size matters more than the last percentage point of recall — see tests/integration/test_model_comparison.py for a repo-committed, CI-run comparison across all three (gte-small, bge-base-en-v1.5, e5-small-v2). bge-small-en-v1.5 and all-MiniLM-L12-v2 were also evaluated and are documented here for completeness, but weren't selected: no clear edge over gte-small/e5-small-v2 on either size or accuracy.

To use a different model, rebuild the index with --model <name> (see Building the Index) and point --index_path / config.yaml at the new file.

Registry Search Comparison (vs. Terraform Registry / HashiCorp MCP)

How does hybrid-semantic search actually compare to a plain keyword lookup against the public Terraform Registry? The registry endpoint used below — GET /v1/modules/search?q=…&provider=aws — is exactly the API that the official hashicorp/terraform-mcp-server's search_modules tool wraps, so this doubles as an apples-to-apples comparison against that competitor's module search.

The benchmark reuses the same golden set as the searchability tests: all 54 modules, each queried 3 ways (exact name, keyword, natural language) — 162 labeled queries — asking "is the expected module in the top-1 / top-3 results?". Registry results are scored two ways: official (hit only if the match comes from the terraform-aws-modules namespace — the same module we document) and any-author (hit if any namespace returns a name-matching module — deliberately generous to the registry).

Query type System Top-1 Top-3
keyword (n=54) TFModSearch (semantic, AWS curated) 94.4% 100.0%
Registry — official terraform-aws-modules 22.2% 22.2%
Registry — any-author aws module 29.6% 38.9%
exact-name (n=54) TFModSearch 100.0% 100.0%
Registry — official 100.0% 100.0%
Registry — any-author 100.0% 100.0%
natural-lang (n=54) TFModSearch 81.5% 100.0%
Registry — official 5.6% 5.6%
Registry — any-author 13.0% 14.8%
OVERALL (n=162) TFModSearch 92.0% 100.0%
Registry — official 42.6% 42.6%
Registry — any-author 47.5% 51.2%

Takeaways:

  • This is a retrieval-quality story, not a coverage story. All 54/54 curated modules exist as standalone official terraform-aws-modules entries in the registry — the registry can return every one; it just doesn't surface them from a descriptive query.
  • Semantic search dominates on natural language. For free-text queries (e.g. managed kubernetes clustereks, serverless function executionlambda), TFModSearch keeps 100% top-3 while the official registry search lands 5.6% (misses 51 of 54). Keyword search only matches when the query already contains the module's terms.
  • The registry's failure mode is "not in results at all," not mis-ranking. Its official top-1 equals top-3 in every row — when the right module appears it's already #1 (download counts float it up); the problem is that for descriptive queries it doesn't appear.
  • Parity only on exact names. If you already know the module name (vpc, s3-bucket), keyword search is fine — the entire value of semantic search is in the other two rows, where a user describes a task rather than a name.
  • Caveats (in the registry's favor): the natural-language queries were authored alongside this corpus (mild home-turf bias, though they are generic task descriptions), and any-author credits the registry for same-named modules from any author — yet it still trails at 51.2% top-3 vs. our 100%.

Reproduce it yourself (opt-in, makes live calls to the public registry):

RUN_REGISTRY_BENCHMARK=1 pytest tests/integration/test_registry_comparison.py -v -s

The comparison is committed as tests/integration/test_registry_comparison.py. It stays hermetic in normal CI (live tests skip unless RUN_REGISTRY_BENCHMARK=1, and skip gracefully if the registry is unreachable); a network-free guard test pins the "100% top-3" figure on our side.

Agentic Selection Comparison (the tool inside a real agent loop)

The table above measures the search engine in isolation — one query, one answer. This measures what happens when a full agent uses it: reformulating, chaining calls, and reasoning across turns to select a module and orient on its inputs. These are two different tests — an agent can reformulate its way past a weak single-shot search, so a gap in one need not appear in the other; neither is evidence for the other.

Setup. 23 infrastructure requirements phrased purely as capabilities, with the module name and its obvious keyword withheld (the query describes the outcome, never the AWS service name) — plus distractors, two genuinely ambiguous pairs, and three honesty checks where the correct answer is "no module fits, fall back to a raw resource." Condition A may use only TFModSearch; condition B only the official hashicorp/terraform-mcp-server — mutually exclusive, tool isolation verified with zero cross-tool contamination. The same task is run across three consumer-model tiers; 3 workers per condition. Selection is scored mechanically against a pre-registered golden; orientation (are the generated skeleton's variable names real and current?) is graded by independent, blinded judges, with one fixed judge model across all fleets.

Selection accuracy — correct module chosen (n=69 = 3 workers × 23 requirements):

Consumer model TFModSearch HashiCorp MCP
Opus (frontier) 69/69 ~65/69
Sonnet (mid) 69/69 66/69
Haiku (small / cheap) 64/69 35/69

Orientation fidelity — real, current variable names in the skeleton (blinded judges, n=69):

Consumer model TFModSearch HashiCorp MCP Gap
Opus (frontier) 66/69 63/69 +3
Sonnet (mid) 68/69 56/69 +12
Haiku (small / cheap) 53/69 23/69 +30

Takeaways:

  • The advantage grows as the consumer model weakens: +3 → +12 → +30. A strong model routes around a weak search — it reformulates and self-corrects — so accuracy ties at the frontier and the tool's value there is cost, not correctness. A cheap model cannot route around it: on the raw registry, Haiku picks download-ranked third-party forks over the official module, marks modules that exist as "not found," and hallucinates variable names wholesale (two baseline runs scored 6/23 and 7/23 on orientation — mostly invented fields). On the curated catalog the same model reaches 64/69 selection and 53/69 orientation.
  • Cost: the same answers at ~2× fewer documentation calls (26 vs 53 on average at the frontier), and cheaper in dollars on every run — e.g. a Sonnet fleet at $22.89 vs $40.54 — a gap that held for 13 consecutive runs. A cheap model on TFModSearch approached the orientation quality of a frontier model on the raw baseline at a small fraction of the spend.
  • Reported straight: at frontier reasoning, selection ties at ceiling and orientation is within noise (+3). "Fewer calls to the right module" is the always-true claim; "catches selections a weaker agent would get wrong" is true and large for cheap models, and invisible at the frontier.
  • Caveats: small N (3 per condition per tier — a demonstration of the mechanism, not a powered statistical estimate); selections and skeletons are graded statically against current docs, with no terraform apply; the cheap model's selection misses are query-formulation upstream of the tool, not the tool returning a wrong result; and automated workers do not invoke the interactive workflow skills, so a human session is likely better than these numbers, not worse.

🤝 Contributing

Contributions are welcome! Please follow these guidelines:

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests and code quality checks
  5. Commit your changes (git commit -m 'Add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Open a Pull Request

Development Guidelines

  • Follow PEP 8 style guidelines (enforced by ruff)
  • Add type hints to all functions (checked by mypy)
  • Write tests for new features
  • Update documentation as needed
  • Keep commits atomic and well-described

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

🙏 Acknowledgments

📞 Support

For questions, issues, or feature requests:

  • Open an issue on GitHub Issues
  • Check existing issues for common problems and solutions

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tfmodsearch-0.25.0.tar.gz (2.5 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tfmodsearch-0.25.0-py3-none-any.whl (2.2 MB view details)

Uploaded Python 3

File details

Details for the file tfmodsearch-0.25.0.tar.gz.

File metadata

  • Download URL: tfmodsearch-0.25.0.tar.gz
  • Upload date:
  • Size: 2.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tfmodsearch-0.25.0.tar.gz
Algorithm Hash digest
SHA256 6c8e616553f7dc87256cab744ffc5f01cd5dd89bd580bec22fe51344740e752d
MD5 02323fda33e705fbe81f8c281cbb14e4
BLAKE2b-256 f6c9e35cf11d1c8f26c24816e417b68a50cb3f0d5b189fa27f152b2527fc5670

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfmodsearch-0.25.0.tar.gz:

Publisher: publish.yml on SantyagoSeaman/tfmodsearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tfmodsearch-0.25.0-py3-none-any.whl.

File metadata

  • Download URL: tfmodsearch-0.25.0-py3-none-any.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for tfmodsearch-0.25.0-py3-none-any.whl
Algorithm Hash digest
SHA256 733f46d8143aa5c3bfa1b1b60f5cd8fa6e45ae19734e7a9f79dfc0b09d0bca8c
MD5 8cf398c442bf5e6329bdfbcac1f37a9d
BLAKE2b-256 a08c9f167e5bd62a540df354ec98fbd2b0228b01d3fcb8c6d197cad2d7d49915

See more details on using hashes here.

Provenance

The following attestation bundles were made for tfmodsearch-0.25.0-py3-none-any.whl:

Publisher: publish.yml on SantyagoSeaman/tfmodsearch

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page