Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Wazobiatech Nexus

FreeNot checked

Enables building MCP servers with HMAC signing and verification, providing server scaffolding and middleware for secure request authentication.

GitHubEmbed

About

Enables building MCP servers with HMAC signing and verification, providing server scaffolding and middleware for secure request authentication.

README

Python SDK for the Nexus MCP ecosystem. Provides HMAC signing/verification and MCP server scaffolding.

Installation

pip install wazobiatech-nexus-mcp==1.0.0

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 pytest

Contract vector tests verify every entry from nexus-mcp-contract/vectors.json.

License

MIT

from github.com/wazobiatech/nexus-mcp-py

Installing Wazobiatech Nexus

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/wazobiatech/nexus-mcp-py

FAQ

Is Wazobiatech Nexus MCP free?

Yes, Wazobiatech Nexus MCP is free — one-click install via Unyly at no cost.

Does Wazobiatech Nexus need an API key?

No, Wazobiatech Nexus runs without API keys or environment variables.

Is Wazobiatech Nexus hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Wazobiatech Nexus in Claude Desktop, Claude Code or Cursor?

Open Wazobiatech Nexus on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Wazobiatech Nexus with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs