Skip to main content
AllMCPs
BrowseBestCategoriesToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI → MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt ↗ (opens in a new tab)
  • Catalog JSON ↗ (opens in a new tab)
  • Remote MCP ↗ (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) ↗ (opens in a new tab)
  • GitHub ↗ (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. Browse
  3. Make Mcp Server
  4. vs Ws Mcp
Side-by-Side Model Context Protocol Comparison

Make Mcp Server vs Ws Mcp

In-depth architectural comparison of the Make Mcp Server and Ws Mcp MCP servers. Compare execution transports, security boundaries, tool capabilities, quality scores, and ready-to-paste client installation snippets for Claude, Cursor, Windsurf, and VS Code.

At a Glance & Executive Verdict

Make Mcp Server
Other Tools and Integrations · Local stdio
Quality: 37/100 (Fair) | Auth: API Key required
Ws Mcp
Other Tools and Integrations · Local stdio
Quality: 39/100 (Fair) | Auth: No auth required
Verdict Summary: Choose Make Mcp Server if you need specialized Other Tools and Integrations tools running via a local process. Choose Ws Mcp if your workspace requires Other Tools and Integrations integration with local subprocess execution. Both servers can be configured concurrently in your client's mcpServers manifest.

Which MCP Server Should You Choose?

Make Mcp Server logo

Choose Make Mcp Server when:

  • You need dedicated capabilities in the Other Tools and Integrations domain.
  • You prefer local stdio subprocess transport architecture.
  • Your security boundary fits: API Key required (BYOK (Pay Provider Direct)).
  • You have access to required keys: MAKE_API_KEY, MAKE_ZONE, MAKE_TEAM.
  • Primary tools included: Connects to Make API with user-provided key, Discovers on-demand scheduled scenarios, Parses and describes scenario input parameters.
Explore Make Mcp Server Details
Ws Mcp logo

Choose Ws Mcp when:

  • You need dedicated capabilities in the Other Tools and Integrations domain.
  • You prefer local stdio subprocess transport architecture.
  • Your security boundary fits: No auth required (Free / Open Source).
  • You have access to required keys: BRAVE_API_KEY.
  • Primary tools included: .

Feature & Specification Comparison

Specification
Make Mcp Server logo
Make Mcp Server
integromat
Other Tools and Integrations
Ws Mcp logo
Ws Mcp
Other Tools and Integrations
SummaryTurn your Make scenarios into callable tools for AI assistants.Wrap MCP servers with a WebSocket (for use with kitbitz)
Category & ScopeOther Tools and IntegrationsOther Tools and Integrations

Tools & Capabilities Breakdown

Make Mcp Server Tools (5)

Connects to Make API with user-provided key
Discovers on-demand scheduled scenarios
Parses and describes scenario input parameters
Invokes scenarios with parameters from AI
Returns scenario outputs as structured JSON

Ws Mcp Tools (5)

Wraps any MCP stdio server with WebSocket transport

Ready-to-Paste Client Configurations

Paste either (or both) of these JSON server blocks into your client config file (e.g. claude_desktop_config.json or ~/.cursor/mcp.json).

Make Mcp Server Configuration
mcpServers (Claude Desktop / Cursor)
{
  "mcpServers": {
    "integromat-make-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "integromat-make-mcp-server"
      ],
      "env": {
        "MAKE_API_KEY": "YOUR_MAKE_API_KEY_HERE",
        "MAKE_ZONE": "YOUR_MAKE_ZONE_HERE",
        "MAKE_TEAM": "YOUR_MAKE_TEAM_HERE"
      }
    }
  }
}
Ws Mcp Configuration
mcpServers (Claude Desktop / Cursor)
{
  "mcpServers": {
    "ws-mcp": {
      "command": "uvx",
      "args": [
        "--refresh"
      ],
      "env": {
        "BRAVE_API_KEY": "YOUR_BRAVE_API_KEY_HERE"
      }
    }
  }
}

Frequently Asked Questions

Make Mcp Server is categorized under Other Tools and Integrations and uses a local stdio subprocess. In contrast, Ws Mcp belongs to Other Tools and Integrations using local stdio subprocess. Select Make Mcp Server when you need capabilities focused on other tools and integrations and Ws Mcp when you require tools for other tools and integrations.

More alternatives to Make Mcp ServerMore alternatives to Ws McpOther Tools and Integrations category hub

Related MCP Server Comparisons

Popular comparisons with Make Mcp Server

  • Actors Mcp Server logoMake Mcp Server vs Actors Mcp Server
  • Mcp Server Asana logoMake Mcp Server vs Mcp Server Asana
  • Mcp Youtube logoMake Mcp Server vs Mcp Youtube
  • Mcp Installer logoMake Mcp Server vs Mcp Installer

Popular comparisons with Ws Mcp

Wraps any MCP stdio server with WebSocket transport, Supports multiple MCP servers running simultaneously, Configurable via JSON file or command-line commands
Explore Ws Mcp Details
Quality signal37/100 (Fair)39/100 (Fair)
Transport ProtocolLocal Subprocess (stdio)Local Subprocess (stdio)
Auth RequirementAPI Key requiredNo auth required
Pricing ModelBYOK (Pay Provider Direct)Free / Open Source
Required Env Vars
MAKE_API_KEYMAKE_ZONEMAKE_TEAM
BRAVE_API_KEY
Compatible Clients
Claude DesktopCursorWindsurfClineVS Code
Claude DesktopCursorWindsurfClineVS Code
Install path signalnpx · lowuvx · high
Engagement & Health 2 views 0 copies 0 upvotes 166 stars 1 views 0 copies 0 upvotes 21 stars
Verified / OfficialCommunity ListingCommunity Listing
Open full listingView Make Mcp Server ListingView Ws Mcp Listing
Supports multiple MCP servers running simultaneously
Configurable via JSON file or command-line commands
Supports environment variable injection for wrapped servers
Default config includes wcgw and fetch MCP servers
Wanaku logoWs Mcp vs Wanaku
  • Mcp Youtube logoWs Mcp vs Mcp Youtube
  • Mcp Server Asana logoWs Mcp vs Mcp Server Asana
  • Git logoWs Mcp vs Git