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
@@ -269,7 +273,7 @@ The Claude desktop application provides comprehensive support for MCP, enabling
269
273
270
274
[Continue](https://github.com/continuedev/continue) is an open-source AI code assistant, with built-in support for all MCP features.
271
275
272
-
**Key features**
276
+
**Key features:**
273
277
274
278
- Type "@" to mention MCP resources
275
279
- Prompt templates surface as slash commands
@@ -290,7 +294,7 @@ The Claude desktop application provides comprehensive support for MCP, enabling
290
294
291
295
[Cursor](https://docs.cursor.com/advanced/model-context-protocol) is an AI code editor.
292
296
293
-
**Key Features**:
297
+
**Key features:**
294
298
295
299
- Support for MCP tools in Cursor Composer
296
300
- Support for both STDIO and SSE
@@ -395,7 +399,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
395
399
396
400
[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.
397
401
398
-
**Key features**
402
+
**Key features:**
399
403
400
404
- AI Commands: Simple APIs like page.ai(), page.extract() and executeTask() for any AI automation
401
405
- Fallback to Regular Playwright: Use regular Playwright when AI isn't needed
@@ -472,7 +476,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
472
476
473
477
[MCPHub] is a powerful Neovim plugin that integrates MCP (Model Context Protocol) servers into your workflow.
474
478
475
-
**Key features**
479
+
**Key features:**
476
480
477
481
- Install, configure and manage MCP servers with an intuitive UI.
478
482
- Built-in Neovim MCP server with support for file operations (read, write, search, replace), command execution, terminal integration, LSP integration, buffers, and diagnostics.
@@ -581,7 +585,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
581
585
582
586
[Postman](https://postman.com/downloads) is the most popular API client and now supports MCP server testing and debugging.
583
587
584
-
**Key features**:
588
+
**Key features:**
585
589
586
590
- Full support of all major MCP features (tools, prompts, resources, and subscriptions)
587
591
- Fast, seamless UI for debugging MCP capabilities
@@ -695,6 +699,17 @@ Theia AI and Theia IDE's MCP integration provide users with flexibility, making
695
699
- Tool calls with editable inputs and always-allow toggle
696
700
- Integration with existing VS Code extension system to register MCP servers from extensions
697
701
702
+
### Warp
703
+
704
+
[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.
705
+
706
+
**Key features:**
707
+
708
+
-**Agent Mode with MCP support**: invoke tools and access data from MCP servers using natural language prompts
709
+
-**Flexible server management**: add and manage CLI or SSE-based MCP servers via Warp's built-in UI
710
+
-**Live tool/resource discovery**: view tools and resources from each running MCP server
711
+
-**Configurable startup**: set MCP servers to start automatically with Warp or launch them manually as needed
712
+
698
713
### WhatsMPC
699
714
700
715
[WhatsMPC](https://wassist.app/mcp/) is an MCP client for WhatsApp. WhatsMCP lets you interact with your AI stack from the comfort of a WhatsApp chat.
@@ -741,6 +756,22 @@ Theia AI and Theia IDE's MCP integration provide users with flexibility, making
741
756
- Tight integration with editor features and workspace context
742
757
- Does not support MCP resources
743
758
759
+
### Zencoder
760
+
761
+
[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.
762
+
763
+
**Key features:**
764
+
765
+
- RepoGrokking - deep contextual understanding of codebases
766
+
- Agentic pipeline - runs, tests, and executes code before outputting it
767
+
- Zen Agents platform - ability to build and create custom agents and share with the team
768
+
- Integrated MCP tool library with one-click installations
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.
Copy file name to clipboardExpand all lines: docs/docs/concepts/architecture.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,8 +108,8 @@ The transport layer handles the actual communication between clients and servers
108
108
- Uses standard input/output for communication
109
109
- Ideal for local processes
110
110
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
113
113
- HTTP POST for client-to-server messages
114
114
115
115
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:
295
295
- Simple process management
296
296
297
297
2.**Remote communication**
298
-
- Use SSE for scenarios requiring HTTP compatibility
298
+
- Use Streamable HTTP for scenarios requiring HTTP compatibility
299
299
- Consider security implications including authentication and authorization
0 commit comments