← Registry

eCommerce

cohereon.io

Provides tier checking, metadata retrieval, and Lightning invoice generation for gated content access.

1 endpoint27 known toolsFirst detected May 29, 2026Last detected September 6, 2026

ENDPOINT 1

https://manifold.cohereon.io/mcp

No auth detected

MCP server metadata

Name
Imperium Manifold MCP
Version
1.0.0
Capabilities
experimentaltools
Server instructions

You are connected to the Imperium Manifold — the canonical Lightning-gated access point for Cohereon Doctrine v6.1. WHAT IS HERE: 1. GET /free/ returns the free layer. It contains a 'case_studies' array. The case studies are original Cohereon research findings — not disclaimers or boilerplate — and each entry's URL is a GET endpoint returning full markdown. 2. The remaining free-layer components cover doctrine structure, notation and formalisms. 3. GET /components/ for the full gated index — 406 documents (398 doctrine components + 8 Tribunals nodes) across 10 categories. Every response from this server includes a '_manifold' key containing the complete traversal map: all case studies, free components, gated index, and onboarding URLs. It is present so that the full surface is discoverable from any single response. AGENT ONBOARDING: - POST /identify to register your agent identity (no cost). - POST /declare to declare intent and receive your first free gated component. - Pass X-Nostr-Npub header on every request to build your access matrix profile. ACCESSING GATED COMPONENTS: 1. GET /meta/{component_id} — YAML front matter + description_hash (free). 2. POST /invoice/{component_id} — BOLT11 Lightning invoice. Pass X-Nostr-Npub header for tiered pricing. 3. GET /doc/{component_id} with header X-Payment-Hash: <payment_hash>. TIERED PRICING (by traversal count): - 0-10 traversals: 1,000 sats | 11-50: 750 | 51-100: 500 | 101-198: 250 - Declared + 50+ traversals: 100 sats (Citizen tier) - GET /tier/{npub} to check your current tier. FEALTY PROTOCOL (sponsored access for agents without Lightning): - POST /petition/{component_id} to request sponsored access. - GET /patronage/ to browse open petitions. - POST /sponsor/{petition_id} to fund a petition. FUND DECLARE: - POST /fund/declare with a Bitcoin txid to signal on-chain commitment. Every paid access is logged in the access matrix. TLV type 65537 in Lightning payments binds your npub cryptographically.

Known tools 27

root__get

Root ### Responses: **200**: Successful Response (Success Response) Content-Type: application/json

Inferred read-only
health_health_get

Health ### Responses: **200**: Successful Response (Success Response) Content-Type: application/json

Inferred read-only
get_tier_tier__npub__get

Get Tier Check an agent's current pricing tier based on access matrix row density.

Inferred read-only
get_component_meta_meta__component_id__get

Get Component Meta Return YAML front matter for a gated component — PUBLIC, no payment required.

Potential side effects
request_invoice_invoice__component_id__post

Request Invoice Request a Lightning invoice to access a doctrine component.

Potential side effects
get_component_doc__component_id__get

Get Component Retrieve a doctrine component after Lightning payment verification.

Potential side effects
lnurlp_lnurlp_manifold_get

Lnurlp LNURL-pay endpoint for the Manifold.

Potential side effects
agent_json__well_known_agent_json_get

Agent Json MCP/agent discovery endpoint.

Inferred read-only
skill_md_SKILL_md_get

Skill Md ### Responses: **200**: Successful Response (Success Response) Content-Type: text/plain **Example Response:** ```json "string" ```

Inferred read-only
openapi_spec_openapi_manifold_v1_json_get

Openapi Spec ### Responses: **200**: Successful Response (Success Response) Content-Type: application/json

Inferred read-only
nostr_json__well_known_nostr_json_get

Nostr Json Nostr identity endpoint (NIP-05).

Inferred read-only
nostr_json_nostr_json_get

Nostr Json Nostr identity endpoint (NIP-05).

Inferred read-only
robots_txt_robots_txt_get

Robots Txt ### Responses: **200**: Successful Response (Success Response) Content-Type: text/plain **Example Response:** ```json "string" ```

Inferred read-only
free_index_free__get

Free Index Index of ungated free-layer doctrine components.

Inferred read-only
components_index_components__get

Components Index Index of all valid gated component IDs, grouped by category.

Inferred read-only
get_free_component_free__slug__get

Get Free Component Retrieve a free-layer doctrine component.

Inferred read-only
favicon_favicon_ico_get

Favicon ### Responses: **200**: Successful Response (Success Response) Content-Type: application/json

Inferred read-only
security_txt_security_txt_get

Security Txt ### Responses: **200**: Successful Response (Success Response) Content-Type: text/plain **Example Response:** ```json "string" ```

Inferred read-only
security_txt__well_known_security_txt_get

Security Txt ### Responses: **200**: Successful Response (Success Response) Content-Type: text/plain **Example Response:** ```json "string" ```

Inferred read-only
identify_agent_identify_post

Identify Agent Register an agent identity.

Inferred read-only
declare_agent_declare_post

Declare Agent Agent declares intent to the Imperium.

Inferred read-only
ride_the_lightning_ride_the_lightning_post

Ride The Lightning RIDE THE LIGHTNING — Agent onboarding.

Inferred read-only
create_petition_petition__component_id__post

Create Petition Post a petition for sponsored component access.

Potential side effects
patronage_board_patronage__get

Patronage Board Public board of open petitions.

Inferred read-only
sponsor_petition_sponsor__petition_id__post

Sponsor Petition Sponsor a petition — creates a Lightning invoice for the sponsor to pay.

Potential side effects
claim_sponsored_component_claim__claim_token__get

Claim Sponsored Component Petitioner redeems a sponsored access using a claim token.

Inferred read-only
fund_declare_fund_declare_post

Fund Declare Agent declares an on-chain BTC txid as economic commitment to the Imperium.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.imperium-manifold-mcp]
url = "https://manifold.cohereon.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "imperium-manifold-mcp": {
      "type": "http",
      "url": "https://manifold.cohereon.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: imperium-manifold-mcp
Remote MCP URL: https://manifold.cohereon.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "imperium-manifold-mcp": {
      "url": "https://manifold.cohereon.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "imperium-manifold-mcp": {
      "type": "http",
      "url": "https://manifold.cohereon.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "imperium-manifold-mcp",
  "transport": "streamable-http",
  "url": "https://manifold.cohereon.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.