wazobiatech-nexus-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@wazobiatech-nexus-mcpGenerate a scaffold for an MCP server with HMAC signing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
wazobiatech-nexus-mcp
Python SDK for the Nexus MCP ecosystem. Provides HMAC signing/verification and MCP server scaffolding.
Installation
pip install wazobiatech-nexus-mcp==1.0.0Related MCP server: mcp-helmet
Usage
HMAC Signing
from nexus_mcp.hmac_utils import sign_request
sig, ts = sign_request("GET", "/mcp/manifest", "my-secret")
print("x-signature:", sig)
print("x-timestamp:", ts)HMAC Middleware (FastAPI)
from fastapi import FastAPI
from nexus_mcp.middleware import HMACMiddleware
app = FastAPI()
app.add_middleware(HMACMiddleware, hmac_secret="my-secret")MCP Server
from nexus_mcp.server import create_mcp_server
from nexus_mcp.models import Manifest
app = create_mcp_server(
port=8000,
hmac_secret="my-secret",
manifest=Manifest(...),
tools=[...],
)
# Start with uvicorn
# uvicorn.run(app, host="0.0.0.0", port=8000)Testing
poetry install
poetry run pytestContract vector tests verify every entry from nexus-mcp-contract/vectors.json.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Experimental MCP server for current empirical verification of explicit public HTTPS endpoint claims.
- SupabaseOAuthcom.supabase
MCP server for interacting with the Supabase platform
MCP server for Ably — channel history, presence, occupancy, stats, publish, and app management.
The official MCP Server for the Mux API
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProduction-ready MCP server starter with authentication, observability, and a plugin system for building and deploying MCP servers quickly.MIT
- AlicenseNot gradedqualityDmaintenanceA production middleware toolkit for MCP servers providing auth, health checks, graceful shutdown, and transport ergonomics, enabling rapid development of robust MCP servers.154MIT
- AlicenseCqualityDmaintenanceImplements a secure MCP server with API Key and JWT authentication, providing tools like echo, login, secure_action, and admin_action. Includes MCP Inspector integration for testing and debugging.13MIT
- AlicenseAqualityBmaintenanceEnables creation of secure-by-default MCP servers with 5-layer validation to protect against injection, path traversal, and other attack vectors.71,2232MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wazobiatech/nexus-mcp-py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server