@hubnote-mcp/server

@hubnote-mcp/server

MCP server for hubNote, enabling AI assistants to manage workspaces, pages, and data rows via natural language.

Category
Visit Server

README

@hubnote-mcp/server

MCP (Model Context Protocol) server for hubNote — connect Claude Desktop, Cursor, Codex, or any MCP client to your hubNote workspaces.

Once installed, you can ask your LLM to:

  • "Create a page in my Engineering workspace called 'Q2 OKR' with KR1, KR2, KR3 as sub-pages"
  • "Find all meeting notes with action items past due"
  • "Summarize the design review and post it as a new page"

Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "hubnote": {
      "command": "npx",
      "args": ["-y", "@hubnote-mcp/server"],
      "env": {
        "HUBNOTE_API_KEY": "hbn_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop. The hubNote tools should appear in the tool picker.

Cursor

Settings → Cursor Settings → MCP, or edit ~/.cursor/mcp.json directly:

{
  "mcpServers": {
    "hubnote": {
      "command": "npx",
      "args": ["-y", "@hubnote-mcp/server"],
      "env": { "HUBNOTE_API_KEY": "hbn_..." }
    }
  }
}

Codex (CLI / IDE extension)

OpenAI Codex uses a TOML config file at ~/.codex/config.toml. Easiest way is the CLI:

codex mcp add hubnote \
  --env HUBNOTE_API_KEY=hbn_yourkeyhere \
  -- npx -y @hubnote-mcp/server

Or edit the TOML directly:

[mcp_servers.hubnote]
command = "npx"
args = ["-y", "@hubnote-mcp/server"]

[mcp_servers.hubnote.env]
HUBNOTE_API_KEY = "hbn_yourkeyhere"

The CLI and IDE extension share the same configuration.

ChatGPT (not supported in v1)

ChatGPT (desktop and web) only accepts remote MCP servers (HTTPS URL

  • OAuth) via Settings → Connectors. This package is stdio-only, so direct ChatGPT setup is not currently possible. A future release will add a remote server endpoint for ChatGPT / claude.ai web. For now use Claude Desktop / Cursor / Codex.

Get an API Key

  1. Sign in to https://notion.discof.com
  2. Account settings → "API 키" tab
  3. "+ 새 API 키 발급" — copy the key (shown only once)

The key carries your full hubNote permissions for all your workspaces. Revoke at any time from the same panel.

Available Tools

(Implemented in Phase 6 — see collab_guide/plans/mcp_integration.md)

  • list_workspaces, list_pages, get_page, search_pages
  • create_page, update_page, archive_page, set_page_visibility
  • list_data_rows, create_data_row, update_data_row, delete_data_row
  • search_help, current_user

Documentation

  • Full setup + tool reference: https://notion.discof.com/help/mcp-integration
  • Source: https://github.com/wlzerd/hubnote-mcp-server

Limits & Safety

  • HTML View pages cannot be created/edited via MCP (security: LLM-authored JS would run in other members' browsers)
  • Database card / view manipulation excluded in v1
  • Page archive is soft (recoverable from "보관함")
  • Data row deletion is immediate — Claude Desktop's confirm dialog is your safety net

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured