Server data from the Official MCP Registry
FoggyKitchen Terraform/OpenTofu blueprints, landing zones, modules, and labs.
About
FoggyKitchen Terraform/OpenTofu blueprints, landing zones, modules, and labs.
Remote endpoints: streamable-http: https://foggykitchen.com/mcp
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
How to Connect
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-foggykitchen-foggykitchen-mcp": {
"url": "https://foggykitchen.com/mcp"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
FoggyKitchen MCP for Codex & Claude Code
Community plugin scaffold for connecting Codex and Claude Code to the FoggyKitchen MCP endpoint.
Status
This repository packages the FoggyKitchen streamable HTTP MCP endpoint for both Codex and Claude Code. The Claude Code plugin manifest and marketplace files follow the current documented schema; the Codex plugin manifest should still be validated against the installed Codex plugin schema before publishing.
Requirements
- Node.js 18 or newer
- A FoggyKitchen Professional+ membership for OAuth access to MCP tools
- Codex with local plugin support, or Claude Code
Install In Codex
Add the FoggyKitchen marketplace:
codex plugin marketplace add https://github.com/foggykitchen/foggykitchen-mcp
Then install the plugin:
codex plugin add foggykitchen-mcp@foggykitchen
Alternatively, configure the MCP server directly in ~/.codex/config.toml:
[mcp_servers.foggykitchen]
url = "https://foggykitchen.com/mcp"
oauth_resource = "https://foggykitchen.com/mcp"
Restart Codex or start a new thread after installing so the MCP tools are loaded.

Install In Claude Code
Register FoggyKitchen as a remote HTTP MCP server:
claude mcp add --transport http foggykitchen https://foggykitchen.com/mcp
You can also use this repository as a project-level MCP configuration. Claude Code auto-detects the .mcp.json at the root of this repo. It connects to https://foggykitchen.com/mcp over HTTP and uses OAuth/PKCE with FoggyKitchen. If you clone the repo and open it as a project, Claude Code will prompt you to approve the foggykitchen MCP server on first use.
Plugin installation is still supported where Claude Code plugin marketplaces are enabled:
claude plugin marketplace add foggykitchen/foggykitchen-mcp
claude plugin install foggykitchen-mcp@foggykitchen
Or from within a Claude Code session:
/plugin marketplace add foggykitchen/foggykitchen-mcp
/plugin install foggykitchen-mcp@foggykitchen
Restart Claude Code or start a new session after adding/installing the server so the MCP tools are loaded.
Quick functional test inside Claude Code:
Use FoggyKitchen MCP. Check my current access and then resolve the architecture for Azure firewall transit landing zone.
Expected result: Claude Code should call FoggyKitchen tools and lead with FoggyKitchen landing-zone/blueprint assets instead of generic vendor documentation.
Sign In With FoggyKitchen
FoggyKitchen MCP supports OAuth/PKCE for Codex and Claude Code. Start the OAuth flow from your AI coding client. FoggyKitchen Settings are used only for manual Personal MCP Tokens.
OAuth is available for Professional+ memberships. Individual Learner and Starter accounts can browse FoggyKitchen, but they cannot authorize MCP access for Codex, Claude Code, or other AI coding clients.
Codex OAuth login
STEP 1. Start login from Codex:
codex mcp login foggykitchen
STEP 2. Your browser opens FoggyKitchen. If you are not signed in, sign in first.
STEP 3. FoggyKitchen shows the OAuth approval screen with Allow access and Deny. Click Allow access.

STEP 4. Codex completes authentication and the FoggyKitchen MCP tools become available.


STEP 5. Run /mcp in Codex to verify the tool list.

Claude Code OAuth login
STEP 1. Start Claude Code, open /mcp, select foggykitchen, and authenticate. Your browser should show FoggyKitchen login if needed, then the OAuth approval screen with Allow access and Deny. After approval, Claude Code should show the server as connected.

STEP 2. Once authenticated, you can close this window:

STEP 3. Claude Code will notify you about being connected to the MCP server:

STEP 4. Review Claude Code MCP connection details:

Manual fallback: Personal MCP Token
Personal MCP Tokens remain available in FoggyKitchen Settings -> AI Developer Tools for legacy clients, smoke tests, and tools that cannot complete OAuth/PKCE yet. OAuth is the recommended flow for Codex and Claude Code.

Configuration
The Codex plugin declares the FoggyKitchen MCP endpoint as an OAuth protected resource:
{
"mcpServers": {
"foggykitchen": {
"type": "http",
"url": "https://foggykitchen.com/mcp",
"oauth_resource": "https://foggykitchen.com/mcp"
}
}
}
For direct smoke tests or legacy clients that do not support OAuth yet, a Personal MCP Token can still be passed as a Bearer token. Do not commit real tokens. If a token has been pasted into chat, shell history, or source control, rotate it.
Publish To MCP Registry
This repository owns the public MCP Registry metadata for FoggyKitchen MCP. The actual remote MCP server is implemented by FoggyKitchen and exposed at https://foggykitchen.com/mcp; server.json only describes that public endpoint for registry consumers.
Publish manually from this repo:
mcp-publisher login github
mcp-publisher publish
Or publish through GitHub Actions by pushing a version tag:
git tag v0.3.2
git push origin v0.3.2
The GitHub Actions workflow uses GitHub OIDC authentication and does not require an MCP Registry secret.
Local Smoke Test
List the tools exposed by FoggyKitchen:
npm run list-tools
Test the stdio bridge manually:
printf '%s\n' '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' | npm run bridge
Files
.codex-plugin/plugin.jsondeclares the Codex plugin metadata..codex-plugin/mcp.jsondeclares the FoggyKitchen MCP endpoint for Codex usingurlandoauth_resource..claude-plugin/plugin.jsondeclares the Claude Code plugin metadata..claude-plugin/marketplace.jsonlists this plugin forclaude plugin marketplace add//plugin marketplace add..agents/plugins/marketplace.jsonlists this plugin for the Codex plugin marketplace..mcp.jsondeclares the FoggyKitchen HTTP MCP endpoint for Claude Code usingoauth_resource. Claude Code auto-detects this file at the project root; it is not read by Codex.server.jsondeclares the public FoggyKitchen remote MCP server metadata for the official MCP Registry..github/workflows/publish-mcp-registry.ymlpublishesserver.jsonto the official MCP Registry on version tags or manual dispatch.scripts/mcp-headers.mjsremains available only for legacy Bearer-token smoke tests usingFOGGYKITCHEN_MCP_AUTHORIZATIONorFOGGYKITCHEN_MCP_TOKEN.mcp/foggykitchen-stdio-bridge.mjsremains available as a local stdio bridge fallback and forwards tool requests to FoggyKitchen.skills/foggykitchen/SKILL.mdteaches Codex or Claude Code when and how to use the plugin.scripts/list-tools.mjsis a direct HTTP smoke test usingFOGGYKITCHEN_MCP_AUTHORIZATIONorFOGGYKITCHEN_MCP_TOKEN.
Troubleshooting
- If Claude Code or Codex reports that the MCP server is not logged in, start the OAuth flow from the client:
codex mcp login foggykitchenfor Codex, or/mcpauthentication for Claude Code. - If the browser opens FoggyKitchen Settings instead of the OAuth approval screen, restart the client and start login again from the MCP client. Settings are for Personal MCP Tokens, not OAuth consent.
- If a Personal MCP Token was pasted into chat, shell history, logs, or source control, rotate it in FoggyKitchen Settings -> AI Developer Tools.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
FinAgent
Freeby mcp-marketplace · Finance
Free stock data and market news for any MCP-compatible AI assistant.
