Skip to content

Commit d1e84ec

Browse files
authored
Merge branch 'main' into add-tuui-client
2 parents 064cd9c + 4161f02 commit d1e84ec

27 files changed

+467
-177
lines changed

docs/clients.mdx

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ This page provides an overview of applications that support the Model Context Pr
6565
| [Windsurf Editor][Windsurf] ||||||| Supports tools with AI Flow for collaborative development. |
6666
| [Witsy][Witsy] ||||||| Supports tools in Witsy. |
6767
| [Zed][Zed] ||||||| Prompts appear as slash commands |
68+
| [Zencoder][Zencoder] ||||||| Supports tools |
6869

6970
[5ire]: https://github.com/nanbingxyz/5ire
7071
[AgentAI]: https://github.com/AdamStrojek/rust-agentai
@@ -119,6 +120,7 @@ This page provides an overview of applications that support the Model Context Pr
119120
[WhatsMPC]: https://wassist.app/mcp/
120121
[Witsy]: https://github.com/nbonamy/witsy
121122
[Zed]: https://zed.dev
123+
[Zencoder]: https://zencoder.ai
122124
[Resources]: https://modelcontextprotocol.io/docs/concepts/resources
123125
[Prompts]: https://modelcontextprotocol.io/docs/concepts/prompts
124126
[Tools]: https://modelcontextprotocol.io/docs/concepts/tools
@@ -291,7 +293,7 @@ The Claude desktop application provides comprehensive support for MCP, enabling
291293

292294
[Continue](https://github.com/continuedev/continue) is an open-source AI code assistant, with built-in support for all MCP features.
293295

294-
**Key features**
296+
**Key features:**
295297

296298
- Type "@" to mention MCP resources
297299
- Prompt templates surface as slash commands
@@ -312,7 +314,7 @@ The Claude desktop application provides comprehensive support for MCP, enabling
312314

313315
[Cursor](https://docs.cursor.com/advanced/model-context-protocol) is an AI code editor.
314316

315-
**Key Features**:
317+
**Key features:**
316318

317319
- Support for MCP tools in Cursor Composer
318320
- Support for both STDIO and SSE
@@ -417,7 +419,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
417419

418420
[HyperAgent](https://github.com/hyperbrowserai/HyperAgent) is Playwright supercharged with AI. With HyperAgent, you no longer need brittle scripts, just powerful natural language commands. Using MCP servers, you can extend the capability of HyperAgent, without having to write any code.
419421

420-
**Key features**
422+
**Key features:**
421423

422424
- AI Commands: Simple APIs like page.ai(), page.extract() and executeTask() for any AI automation
423425
- Fallback to Regular Playwright: Use regular Playwright when AI isn't needed
@@ -494,7 +496,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
494496

495497
[MCPHub] is a powerful Neovim plugin that integrates MCP (Model Context Protocol) servers into your workflow.
496498

497-
**Key features**
499+
**Key features:**
498500

499501
- Install, configure and manage MCP servers with an intuitive UI.
500502
- Built-in Neovim MCP server with support for file operations (read, write, search, replace), command execution, terminal integration, LSP integration, buffers, and diagnostics.
@@ -603,7 +605,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
603605

604606
[Postman](https://postman.com/downloads) is the most popular API client and now supports MCP server testing and debugging.
605607

606-
**Key features**:
608+
**Key features:**
607609

608610
- Full support of all major MCP features (tools, prompts, resources, and subscriptions)
609611
- Fast, seamless UI for debugging MCP capabilities
@@ -774,6 +776,22 @@ Theia AI and Theia IDE's MCP integration provide users with flexibility, making
774776
- Tight integration with editor features and workspace context
775777
- Does not support MCP resources
776778

779+
### Zencoder
780+
781+
[Zencoder](https://zecoder.ai) is a coding agent that's available as an extension for VS Code and JetBrains family of IDEs, meeting developers where they already work. It comes with RepoGrokking (deep contextual codebase understanding), agentic pipeline, and the ability to create and share custom agents.
782+
783+
**Key features:**
784+
785+
- RepoGrokking - deep contextual understanding of codebases
786+
- Agentic pipeline - runs, tests, and executes code before outputting it
787+
- Zen Agents platform - ability to build and create custom agents and share with the team
788+
- Integrated MCP tool library with one-click installations
789+
- Specialized agents for Unit and E2E Testing
790+
791+
**Learn more:**
792+
793+
- [Zencoder Documentation](https://docs.zencoder.ai)
794+
777795
## Adding MCP support to your application
778796

779797
If you've added MCP support to your application, we encourage you to submit a pull request to add it to this list. MCP integration can provide your users with powerful contextual AI capabilities and make your application part of the growing MCP ecosystem.

docs/docs/concepts/architecture.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ The transport layer handles the actual communication between clients and servers
108108
- Uses standard input/output for communication
109109
- Ideal for local processes
110110

111-
2. **HTTP with SSE transport**
112-
- Uses Server-Sent Events for server-to-client messages
111+
2. **Streamable HTTP transport**
112+
- Uses HTTP with optional Server-Sent Events for streaming
113113
- HTTP POST for client-to-server messages
114114

115115
All transports use [JSON-RPC](https://www.jsonrpc.org/) 2.0 to exchange messages. See the [specification](/specification/) for detailed information about the Model Context Protocol message format.
@@ -295,7 +295,7 @@ Here's a basic example of implementing an MCP server:
295295
- Simple process management
296296

297297
2. **Remote communication**
298-
- Use SSE for scenarios requiring HTTP compatibility
298+
- Use Streamable HTTP for scenarios requiring HTTP compatibility
299299
- Consider security implications including authentication and authorization
300300

301301
### Message handling

0 commit comments

Comments
 (0)