You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,15 @@
4
4
5
5
## Introduction
6
6
7
-
Hatch is the package manager for managing Model Context Protocol (MCP) servers with environment isolation, multi-type dependency resolution, and multi-host deployment. Deploy MCP servers to Claude Desktop, VS Code, Cursor, and other platforms with automatic dependency management.
7
+
Hatch is the package manager for managing Model Context Protocol (MCP) servers with environment isolation, multi-type dependency resolution, and multi-host deployment. Deploy MCP servers to Claude Desktop, VS Code, Cursor, Kiro, Codex, and other platforms with automatic dependency management.
8
8
9
9
The canonical documentation is at `docs/index.md` and published at <https://hatch.readthedocs.io/en/latest/>.
10
10
11
11
## Key Features
12
12
13
13
-**Environment Isolation** — Create separate, isolated workspaces for different projects without conflicts
14
14
-**Multi-Type Dependency Resolution** — Automatically resolve and install system packages, Python packages, Docker containers, and Hatch packages
15
-
-**Multi-Host Deployment** — Deploy MCP servers to Claude Desktop, Claude Code, VS Code, Cursor, LM Studio, and Google Gemini CLI
15
+
-**Multi-Host Deployment** — Configure MCP servers on multiple host platforms
16
16
-**Package Validation** — Ensure packages meet schema requirements before distribution
17
17
-**Development-Focused** — Optimized for rapid development and testing of MCP server ecosystems
18
18
@@ -24,6 +24,8 @@ Hatch supports deployment to the following MCP host platforms:
24
24
-**Claude Code** — Claude integration for VS Code with MCP capabilities
25
25
-**VS Code** — Visual Studio Code with the MCP extension for tool integration
26
26
-**Cursor** — AI-first code editor with built-in MCP server support
27
+
-**Kiro** — Kiro IDE with MCP support
28
+
-**Codex** — OpenAI Codex with MCP server configuration support
27
29
-**LM Studio** — Local LLM inference platform with MCP server integration
28
30
-**Google Gemini CLI** — Command-line interface for Google's Gemini model with MCP support
Copy file name to clipboardExpand all lines: docs/articles/devs/architecture/mcp_host_configuration.md
+60-17Lines changed: 60 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,9 @@ This article is about:
9
9
10
10
## Overview
11
11
12
-
The MCP host configuration system provides centralized management of Model Context Protocol server configurations across multiple host platforms (Claude Desktop, VS Code, Cursor, etc.). It uses a decorator-based architecture with inheritance patterns for clean code organization and easy extension.
12
+
The MCP host configuration system provides centralized management of Model Context Protocol server configurations across multiple host platforms (Claude Desktop, VS Code, Cursor, Kiro, etc.). It uses a decorator-based architecture with inheritance patterns for clean code organization and easy extension.
13
+
14
+
> **Adding a new host?** See the [Implementation Guide](../implementation_guides/mcp_host_configuration_extension.md) for step-by-step instructions.
13
15
14
16
## Core Architecture
15
17
@@ -45,8 +47,9 @@ Host strategies are organized into families for code reuse:
0 commit comments