Developers

Hubney speaks MCP

A remote Model Context Protocol server lets your AI assistant call Hubney tools directly, with no copy-paste between tabs.

What's an MCP server?

Model Context Protocol is an open standard for connecting AI assistants to external tools and data sources. It's supported by Claude Desktop and Code, Cursor, Windsurf, VS Code Copilot, ChatGPT, and most other modern AI clients.

Point your assistant at Hubney's MCP endpoint and it can invoke the tools as part of a conversation, with the same privacy guarantees as the website: no analytics, no accounts, EU-hosted.

Endpoint

Streamable HTTP, JSON-RPC 2.0, no authentication required.

https://hubney.com/mcp

Quick start

Most clients use a small bridge called mcp-remote to translate stdio into the streamable HTTP transport. Add an entry to your client's MCP config.

Claude Desktop / Claude Code

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or the equivalent on your OS.

{
  "mcpServers": {
    "hubney-tools": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://hubney.com/mcp"]
    }
  }
}

Cursor

Edit ~/.cursor/mcp.json.

{
  "mcpServers": {
    "hubney-tools": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://hubney.com/mcp"]
    }
  }
}

VS Code Copilot

Add to .vscode/mcp.json in your workspace, or to the user-level config.

{
  "servers": {
    "hubney-tools": {
      "type": "http",
      "url": "https://hubney.com/mcp"
    }
  }
}

Kiro

Edit ~/.kiro/settings/mcp.json.

{
  "mcpServers": {
    "hubney-tools": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://hubney.com/mcp"]
    }
  }
}

After editing the config, restart your client (or trigger a reconnect) so the new server registers. Once connected, the tools appear in the assistant's tool list.

Available tools

The tool catalog evolves; ask your assistant to tools/list for the live set. Each tool ships an input schema with parameter descriptions so the model knows how to call it.

  • generate_password: cryptographically secure random password with configurable length and character classes.

More tools land here as I wire them up. If there's a Hubney tool you'd like exposed, let me know.

Notes

  • The endpoint is rate-limited per IP; agentic loops should batch calls and cache results.
  • No auth today. If I add it later, this page will document the bearer token flow.