MCP server
by opentofu
Search the OpenTofu Registry for providers, modules, resources, and docs to streamline your infrastructure-as-code tasks
Provides access to the OpenTofu Registry, letting you search for and retrieve information about infrastructure-as-code providers, modules, and their documentation.
OpenTofu Registry is an official MCP server published by opentofu that provides AI assistants with tools and capabilities via the Model Context Protocol. Search the OpenTofu Registry for providers, modules, resources, and docs to streamline your infrastructure-as-code tasks It is categorized under developer tools. This server exposes 5 tools that AI clients can invoke during conversations and coding sessions.
You can install OpenTofu Registry in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
NOASSERTION
OpenTofu Registry is released under the NOASSERTION license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
OpenTofu Registry is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
OpenTofu Registry is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated OpenTofu Registry against two servers with overlapping tools; this profile had the clearer scope statement.
OpenTofu Registry has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
OpenTofu Registry is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
OpenTofu Registry has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
OpenTofu Registry reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
I recommend OpenTofu Registry for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Useful MCP listing: OpenTofu Registry is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated OpenTofu Registry against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 32
A Model Context Protocol (MCP) server for accessing the OpenTofu Registry. This server allows language model assistants to search for and retrieve information about OpenTofu providers, modules, resources, and data sources.
Available as both a local Node.js server and a remote Cloudflare Worker deployment.
You can use this MCP server with any AI assistant that supports the Model Context Protocol. Choose between the hosted service or local installation:
The easiest way to get started is to use our hosted service at mcp.opentofu.org. Benefits include:
Add the hosted OpenTofu MCP server to Claude Code:
claude mcp add opentofu -t sse https://mcp.opentofu.org/sse
Automatically install to Cursor in one click
Add this to your settings.json.
{
"mcp": {
"servers": {
"opentofu": {
"type": "sse",
"url": "https://mcp.opentofu.org/sse"
},
}
}
}
You do not need to define any inputs.
{
"mcpServers": {
"opentofu": {
"transport": "sse",
"endpoint": "https://mcp.opentofu.org/sse"
}
}
}
You can also run the server locally with npx:
npx @opentofu/opentofu-mcp-server
Install globally for repeated use:
npm install -g @opentofu/opentofu-mcp-server
opentofu-mcp-server
Add the local server to Claude Code:
claude mcp add opentofu -- npx @opentofu/opentofu-mcp-server
{
"mcpServers": {
"opentofu": {
"command": "npx",
"args": ["-y", "@opentofu/opentofu-mcp-server"]
}
}
}
The OpenTofu MCP server provides the following tools:
search-opentofu-registry: Search for providers, modules, resources, and data sourcesget-provider-details: Get detailed information about a specific providerget-module-details: Get detailed information about a specific moduleget-resource-docs: Get documentation for a specific resourceget-datasource-docs: Get documentation for a specific data sourcePrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.