Server data from the Official MCP Registry
MCP server for Sherweb — billing, subscriptions, customers, and product catalog.
MCP server for Sherweb — billing, subscriptions, customers, and product catalog.
The Sherweb MCP server is well-structured with proper OAuth2 authentication, appropriate credential handling via environment variables, and no obvious malicious patterns. However, there are notable security concerns: elicitation functions lack input validation and error handling, credentials can leak through error messages, and the health check endpoint bypasses authentication in a way that could mask deployment issues. Permissions are reasonable for a billing/subscription management tool (network_http, env_vars). Supply chain analysis found 2 known vulnerabilities in dependencies (1 critical, 0 high severity).
7 files analyzed · 11 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: SHERWEB_CLIENT_ID
Environment variable: SHERWEB_CLIENT_SECRET
Environment variable: SHERWEB_SUBSCRIPTION_KEY
Environment variable: MCP_TRANSPORT
Environment variable: AUTH_MODE
Environment variable: LOG_LEVEL
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-wyre-technology-sherweb-mcp": {
"env": {
"AUTH_MODE": "your-auth-mode-here",
"LOG_LEVEL": "your-log-level-here",
"MCP_TRANSPORT": "your-mcp-transport-here",
"SHERWEB_CLIENT_ID": "your-sherweb-client-id-here",
"SHERWEB_CLIENT_SECRET": "your-sherweb-client-secret-here",
"SHERWEB_SUBSCRIPTION_KEY": "your-sherweb-subscription-key-here"
},
"args": [
"-y",
"@wyre-technology/sherweb-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server for Sherweb cloud marketplace and partner portal. Enables AI assistants to manage customer subscriptions, browse the product catalog, and handle billing operations.
This is a Model Context Protocol (MCP) server that connects Claude (or any MCP-compatible AI) to your Sherweb environment.
Part of the MSP Claude Plugins ecosystem — a growing suite of AI integrations for the MSP stack. Built by MSPs, for MSPs.
npm install @wyre-technology/sherweb-mcp
Set the following environment variables:
| Variable | Required | Description |
|---|---|---|
SHERWEB_CLIENT_ID | Yes | Your Sherweb API client ID |
SHERWEB_CLIENT_SECRET | Yes | Your Sherweb API client secret |
SHERWEB_SUBSCRIPTION_KEY | Yes | Your Sherweb subscription key |
MCP_TRANSPORT | No | Transport mode: stdio (default) or http |
Add to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"sherweb-mcp": {
"command": "npx",
"args": ["@wyre-technology/sherweb-mcp"],
"env": {
"SHERWEB_CLIENT_ID": "your-sherweb-client-id"
"SHERWEB_CLIENT_SECRET": "your-sherweb-client-secret"
"SHERWEB_SUBSCRIPTION_KEY": "your-sherweb-subscription-key"
}
}
}
}
claude mcp add sherweb-mcp \
-e SHERWEB_CLIENT_ID=your-value \
-e SHERWEB_CLIENT_SECRET=your-value \
-e SHERWEB_SUBSCRIPTION_KEY=your-value \
-- npx -y @wyre-technology/sherweb-mcp
docker build -t sherweb-mcp .
docker run \
-e SHERWEB_CLIENT_ID=your-value \
-e SHERWEB_CLIENT_SECRET=your-value \
-e SHERWEB_SUBSCRIPTION_KEY=your-value \
-p 8080:8080 sherweb-mcp
Billing management and invoice operations
Browse the Sherweb product catalog
Customer account management
Subscription lifecycle management
# Clone the repository
git clone https://github.com/wyre-technology/sherweb-mcp.git
cd sherweb-mcp
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
Contributions are welcome! Please see CONTRIBUTING.md if present, or open an issue to discuss changes.
Licensed under the Apache License, Version 2.0. See LICENSE for details.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.