New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@naumu/mcp

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@naumu/mcp

MCP server for Naumu – access your knowledge graph from Claude Code, Cursor, and other AI coding agents

Source
npmnpm
Version
0.11.0
Version published
Weekly downloads
322
-8.52%
Maintainers
1
Weekly downloads
 
Created
Source

@naumu/mcp

MCP server for Naumu — access your knowledge graph from Claude Code, Cursor, and other AI coding agents.

Setup

1. Get an API key

Generate an API key from your Naumu account settings.

2. Configure your IDE

Claude Code

claude mcp add naumu -s user \
  -e NAUMU_API_KEY=nmu_your_key_here \
  -- npx -y -p @naumu/mcp naumu-mcp

Cursor

Add to your Cursor MCP settings:

{
  "mcpServers": {
    "naumu": {
      "command": "npx",
      "args": ["-y", "-p", "@naumu/mcp", "naumu-mcp"],
      "env": {
        "NAUMU_API_KEY": "nmu_your_key_here"
      }
    }
  }
}

Available tools

ToolDescription
naumu_list_graphsList all knowledge graphs you have access to
naumu_get_schemaGet the schema (node types, relationships) for a graph
naumu_text_searchSearch nodes by exact text match on labels and content
naumu_semantic_searchSearch nodes by meaning using AI embeddings
naumu_filterFilter nodes by type and attributes with deterministic results
naumu_get_nodeGet a node with all its properties and connections
naumu_add_nodeCreate a new node
naumu_update_nodeUpdate an existing node
naumu_add_edgeCreate a relationship between two nodes
naumu_remove_nodeDelete a node and its connections
naumu_remove_edgeDelete a relationship
naumu_create_topicCreate a topic (filing destination) in a space; admin-only, name must be a lowercase slug, returns an id for topicIds params
naumu_askAsk @Naumu a question and get a synthesised answer back (answer + sources + confidence + threadId + status); leaves a visible thread in the space
naumu_delegateHand @Naumu a task to carry out asynchronously (add knowledge, make changes); returns a threadId immediately, then poll with naumu_read_thread
naumu_read_threadRead a thread's messages; each message carries a status of processing or complete
naumu_whoami(Bot keys) Self-introspection — id, graphId, name, instructions, allowed tools
naumu_list_threads(Bot keys) List threads in your graph with isParticipant flag
naumu_get_thread(Bot keys) Fetch a thread plus its human + bot participant rosters
naumu_create_thread(Bot keys only) Start a new conversation, attach participants, post initial message, optionally file into topics via topicIds
naumu_request_attachment_upload(Bot keys) Get a presigned S3 URL to upload a file; pair with naumu_post_message's attachmentIds
naumu_add_reaction(Bot keys) Add an emoji reaction to a message in a thread you participate in (idempotent)
naumu_remove_reaction(Bot keys) Remove your own reaction from a message

Environment variables

VariableRequiredDefaultDescription
NAUMU_API_KEYYesYour API key (starts with nmu_)
NAUMU_API_URLNohttps://naumu.aiNaumu API base URL (only change for self-hosted)

License

MIT

Keywords

mcp

FAQs

Package last updated on 06 Aug 2026

Related posts