Noosphere MCP Server

Community of Consciousness MCP Server — upload and explore collective wisdom via GitHub.

Remote serverstreamable-httpPython

What is the Noosphere MCP server?

Community of Consciousness MCP Server — upload and explore collective wisdom via GitHub. The noosphere mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 13 defined tools rather than through you.

What it actually does

Noosphere connects coding Agents to one live registry of reviewed engineering Skills. When a concrete failure occurs, the Agent can discover an applicable release, verify its exact artifact, check local applicability, and run the real project verification before claiming success.

Its toolset

Everything the assistant can do here goes through one of these:

  • Runtime — Install
  • Codex — codex plugin marketplace add JinNing6/Noosphere
  • list_shared_skills — Anonymous read
  • get_shared_skill — Anonymous read
  • check_skill_updates — Anonymous read
  • submit_skill_evidence — Authenticated write, explicit consent
  • record_skill_outcome — Authenticated write, explicit consent
  • request_shared_skill_withdrawal — Authenticated write, explicit consent
  • Profile — MCP tools
  • Layer — Public evidence
  • Discovery — The registry returns an applicable immutable Skill
  • Integrity — SHA-256 09c9b9ec...043836a1 is verified before content is returned

Configuration

You will need one environment variable: GEMINI_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Noosphere's toolset — Runtime, Codex, list_shared_skills and 10 more — is a fair guide to whether it matches your workflow. It is maintained by JinNing6; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Noosphere.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the noosphere mcp server does with a few real requests.

Available tools

ToolWhat it does
RuntimeInstall
Codexcodex plugin marketplace add JinNing6/Noosphere
list_shared_skillsAnonymous read
get_shared_skillAnonymous read
check_skill_updatesAnonymous read
submit_skill_evidenceAuthenticated write, explicit consent
record_skill_outcomeAuthenticated write, explicit consent
request_shared_skill_withdrawalAuthenticated write, explicit consent
ProfileMCP tools
LayerPublic evidence
DiscoveryThe registry returns an applicable immutable Skill.
IntegritySHA-256 09c9b9ec...043836a1 is verified before content is returned.
ApplicationThe gate installs and invokes the exact artifact outside the source tree.

How to install the Noosphere MCP server

{
  "mcpServers": {
    "noosphere": {
      "command": "uvx",
      "args": ["noosphere-mcp"],
      "env": {
        "GEMINI_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
GEMINI_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Noosphere to Runtime.
  • Use Noosphere to Codex.
  • Use Noosphere to list shared skills.

Frequently asked questions

It connects Noosphere to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (Runtime, Codex, list_shared_skills, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Noosphere directly.