Skip to content

Commit 02a41ef

Browse files
authored
Merge branch 'main' into aaronpk/ext-auth
2 parents 5cfc5bc + 466cd8a commit 02a41ef

File tree

3 files changed

+25
-10
lines changed

3 files changed

+25
-10
lines changed

docs/clients.mdx

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ This page provides an overview of applications that support the Model Context Pr
3737
| [CodeGPT][CodeGPT] ||||||||
3838
| [Continue][Continue] ||||||||
3939
| [Copilot-MCP][CopilotMCP] ||||||||
40-
| [Cursor][Cursor] ||||| |||
40+
| [Cursor][Cursor] ||||| |||
4141
| [Daydreams Agents][Daydreams] ||||||||
4242
| [ECA][ECA] ||||||||
4343
| [Emacs Mcp][Mcp.el] ||||||||
@@ -92,20 +92,20 @@ This page provides an overview of applications that support the Model Context Pr
9292
| [Superjoin][Superjoin] ||||||||
9393
| [Swarms][Swarms] ||||||||
9494
| [systemprompt][systemprompt] ||||||||
95-
| [Tambo][Tambo] ||||| |||
95+
| [Tambo][Tambo] ||||| |||
9696
| [Tencent CloudBase AI DevKit][Tencent CloudBase AI DevKit] ||||||||
9797
| [TheiaAI/TheiaIDE][TheiaAI/TheiaIDE] ||||||||
9898
| [Tome][Tome] ||||||||
9999
| [TypingMind App][TypingMind App] ||||||||
100100
| [VS Code GitHub Copilot][VS Code] ||||||||
101+
| [VT Code][VT Code] ||||| ⚠️ |||
101102
| [Warp][Warp] ||||||||
102103
| [WhatsMCP][WhatsMCP] ||||||||
103104
| [Windsurf Editor][Windsurf] ||||||||
104105
| [Witsy][Witsy] ||||||||
105106
| [Zed][Zed] ||||||||
106107
| [Zencoder][Zencoder] ||||||||
107108

108-
109109
{/* prettier-ignore-end */}
110110

111111
[Resources]: /docs/concepts/resources
@@ -198,6 +198,7 @@ This page provides an overview of applications that support the Model Context Pr
198198
[Tome]: https://github.com/runebookai/tome
199199
[TypingMind App]: https://www.typingmind.com
200200
[VS Code]: https://code.visualstudio.com/
201+
[VT Code]: https://github.com/vinhnx/vtcode
201202
[Windsurf]: https://codeium.com/windsurf
202203
[gptme]: https://github.com/gptme/gptme
203204
[Warp]: https://www.warp.dev/
@@ -1184,7 +1185,7 @@ Smithery Playground is a developer-first MCP client for exploring, testing and d
11841185
- Support for selection of arbitrary React components in the chat experience, with state management and tool calling.
11851186
- Support for MCP servers, from Tambo's servers or directly from the browser.
11861187
- Supports OAuth 2.1 and custom header-based authentication.
1187-
- Support for MCP tools, with additional MCP features coming soon.
1188+
- Support for MCP tools and sampling, with additional MCP features coming soon.
11881189

11891190
### Tencent CloudBase AI DevKit
11901191

@@ -1250,6 +1251,20 @@ Theia AI and Theia IDE's MCP integration provide users with flexibility, making
12501251
- Tool calls with editable inputs and always-allow toggle
12511252
- Integration with existing VS Code extension system to register MCP servers from extensions
12521253

1254+
### VT Code
1255+
1256+
[VT Code](https://github.com/vinhnx/vtcode) is a terminal coding agent that integrates with Model Context Protocol (MCP) servers, focusing on predictable tool permissions and robust transport controls.
1257+
1258+
**Key features:**
1259+
1260+
- Connect to MCP servers over stdio; optional experimental RMCP/streamable HTTP support
1261+
- Configurable per-provider concurrency, startup/tool timeouts, and retries via `vtcode.toml`
1262+
- Pattern-based allowlists for tools, resources, and prompts with provider-level overrides
1263+
1264+
**Learn more:**
1265+
1266+
- [MCP Integration Guide](https://github.com/vinhnx/vtcode/blob/main/docs/guides/mcp-integration.md)
1267+
12531268
### Warp
12541269

12551270
[Warp](https://www.warp.dev/) is the intelligent terminal with AI and your dev team's knowledge built-in. With natural language capabilities integrated directly into an agentic command line, Warp enables developers to code, automate, and collaborate more efficiently -- all within a terminal that features a modern UX.

docs/docs/develop/connect-local-servers.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ With this change in place, launch Claude Desktop once again.
283283

284284
<Warning>
285285

286-
**NPM should be installed globally**
286+
**npm should be installed globally**
287287

288-
The `npx` command may continue to fail if you have not installed NPM globally. If NPM is already installed globally, you will find `%APPDATA%\npm` exists on your system. If not, you can install NPM globally by running the following command:
288+
The `npx` command may continue to fail if you have not installed npm globally. If npm is already installed globally, you will find `%APPDATA%\npm` exists on your system. If not, you can install npm globally by running the following command:
289289

290290
```bash
291291
npm install -g npm

docs/docs/tools/inspector.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ npx @modelcontextprotocol/inspector <command>
1919
npx @modelcontextprotocol/inspector <command> <arg1> <arg2>
2020
```
2121

22-
#### Inspecting servers from NPM or PyPi
22+
#### Inspecting servers from npm or PyPI
2323

24-
A common way to start server packages from [NPM](https://npmjs.com) or [PyPi](https://pypi.org).
24+
A common way to start server packages from [npm](https://npmjs.com) or [PyPI](https://pypi.org).
2525

2626
<Tabs>
2727

28-
<Tab title="NPM package">
28+
<Tab title="npm package">
2929

3030
```bash
3131
npx -y @modelcontextprotocol/inspector npx <package-name> <args>
@@ -35,7 +35,7 @@ npx -y @modelcontextprotocol/inspector npx @modelcontextprotocol/server-filesyst
3535

3636
</Tab>
3737

38-
<Tab title="PyPi package">
38+
<Tab title="PyPI package">
3939

4040
```bash
4141
npx @modelcontextprotocol/inspector uvx <package-name> <args>

0 commit comments

Comments
 (0)