Humanmcp Go MCP Server

A personal content server speaking Model Context Protocol (MCP/JSON-RPC 2.0).

Local serverstdioGo

What is the Humanmcp Go MCP server?

Connect Humanmcp Go to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A personal content server speaking Model Context Protocol (MCP/JSON-RPC 2.0). The humanmcp go mcp server is what makes that connection.

What the server does

  • i18n — — PL/EN language toggle on main page (EN default, stored in localStorage)
  • License wizard — — per-piece usage rules: what humans may do, what AI agents may do
  • Artworks — — photo upload, medium, dimensions, year, provenance documents
  • Provenance — — attach certificates, sale records, expert opinions to artworks (signed)
  • ask_human — — agents can ask the author questions privately (async Q&A, invisible to public)
  • Federation — — peer discovery via list_peers / announce_peer MCP tools and /api/peers REST

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_author_profile — Who is kapoost — bio, content overview, how to browse
  • list_content — Browse all pieces with metadata, filter by type or tag
  • read_content — Read a piece — respects all access gates
  • search_content — Full-text search across all pieces
  • request_access — Get gate details for locked content
  • submit_answer — Unlock challenge-gated content
  • list_blobs — Browse typed data artifacts
  • read_blob — Read image, contact, dataset, vector (respects audience)
  • verify_content — Verify Ed25519 signature
  • get_certificate — Full IP certificate: license, price, originality index, hash, signature
  • upgrade_timestamp — Upgrade OTS proof to Bitcoin-anchored
  • request_license — Declare intended use, get terms, logged for audit

Credentials and setup notes

Configuration is passed through the environment: VAULT_URL, EDIT_TOKEN, SIGNING_PRIVATE_KEY, SIGNING_PUBLIC_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

Where it fits

This sits in the planning and project tracking group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Humanmcp Go's toolset — get_author_profile, list_content, read_content and 11 more — is a fair guide to whether it matches your workflow. It is maintained by kapoost; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Humanmcp Go's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Humanmcp Go.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_author_profileWho is kapoost — bio, content overview, how to browse
list_contentBrowse all pieces with metadata, filter by type or tag
read_contentRead a piece — respects all access gates
search_contentFull-text search across all pieces
request_accessGet gate details for locked content
submit_answerUnlock challenge-gated content
list_blobsBrowse typed data artifacts
read_blobRead image, contact, dataset, vector (respects audience)
verify_contentVerify Ed25519 signature
get_certificateFull IP certificate: license, price, originality index, hash, signature
upgrade_timestampUpgrade OTS proof to Bitcoin-anchored
request_licenseDeclare intended use, get terms, logged for audit
leave_commentLeave a reaction — visible in author dashboard
leave_messageSend a direct note (max 2000 chars, URLs welcome)

How to install the Humanmcp Go MCP server

{
  "mcpServers": {
    "kapoost": {
      "type": "http",
      "url": "https://kapoost.humanmcp.net/mcp"
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
VAULT_URLEndpoint or connection string the server talks to.Yes
EDIT_TOKENCredential the server authenticates with.Yes
SIGNING_PRIVATE_KEYCredential the server authenticates with.Yes
SIGNING_PUBLIC_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Humanmcp Go to get author profile.
  • Use Humanmcp Go to list content.
  • Use Humanmcp Go to read content.

Frequently asked questions

It connects Humanmcp Go to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_author_profile, list_content, read_content, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Humanmcp Go directly.