Skip to main content
Glama

Notion MCP

A secure, open-source Model Context Protocol server for connecting AI agents and apps to Notion.

We built this because the existing hosted/default Notion MCP flow was down or unreliable when we needed it. Instead of waiting on a black-box integration, this project gives teams a simple Notion bridge they can own, run locally, deploy privately, customize, and audit.

Notion MCP is designed to work with any app or team setup:

  • No agent architecture yet: use it as a clean local Notion MCP server for search, read, create, and append workflows.

  • Intermediate agent setup: connect it to Codex, Claude Desktop, Cursor, or your own assistant as a safe documentation bridge.

  • Advanced multi-agent architecture: use it as the Notion knowledge layer behind a lead agent, task agents, product agents, release agents, or app-specific orchestration.

The goal is easy, useful, accommodating infrastructure: Notion stays your source of truth, and agents only get the tools you intentionally expose.

What It Does

V1 includes:

  • Search Notion pages.

  • Retrieve Notion page metadata, blocks, and readable plain text.

  • Create new Notion pages under a configured root page.

  • Append content to existing Notion pages.

  • List configured apps/projects.

  • Retrieve lightweight app/project context.

  • Log decisions to Notion.

  • Generate simple Codex-ready prompts from project context.

  • Audit-log every tool call.

  • Enforce risk levels for every tool.

V1 intentionally does not include destructive tools, production-control tools, billing actions, auth changes, email sending, deployments, or unrestricted app control.

Related MCP server: Notion MCP Server

Architecture

AI Client or Agent
   |
   | calls approved MCP tools
   v
Notion MCP
   |
   | uses a scoped Notion integration token
   v
Notion Workspace or Page Tree

For more advanced teams, you can add app connectors behind the same permission model:

Lead Agent
   |
   v
Notion MCP / App Gateway
   |
   |-------------------------------
   |          |          |         |
Notion    App API    CI Tool    Support Tool

The important rule: agents should call approved MCP tools, not receive unrestricted direct access to every system.

Quick Start

npm install
npm run build
cp .env.example .env

Create a Notion integration at:

https://www.notion.com/my-integrations

Then:

  1. Copy the integration secret into NOTION_TOKEN.

  2. Open the Notion page you want this server to access.

  3. Use Notion's page menu to connect/share the page with your integration.

  4. Copy the page ID into NOTION_ROOT_PAGE_ID.

.env:

NOTION_TOKEN=
NOTION_ROOT_PAGE_ID=
SUPABASE_URL=
SUPABASE_SERVICE_ROLE_KEY=
MCP_GATEWAY_API_KEY=
OPENAI_API_KEY=
NODE_ENV=development
AUDIT_LOG_FILE=.audit/tool-calls.jsonl

Only NOTION_TOKEN and NOTION_ROOT_PAGE_ID are required for the core Notion tools. Supabase is optional.

Run Locally

Development:

npm run dev

Built server:

npm run build
npm start

Stdio wrapper for MCP clients:

./scripts/run-mcp.sh

The wrapper loads .env from the repo so you do not need to copy secrets into global client config files.

Connect To Codex

./scripts/register-codex-mcp.sh notion_mcp
codex mcp list

Restart Codex or open a fresh session after registration.

Equivalent config:

[mcp_servers.notion_mcp]
command = "/absolute/path/to/notion-mcp/scripts/run-mcp.sh"
args = []
cwd = "/absolute/path/to/notion-mcp"
startup_timeout_sec = 120

Connect To Other MCP Clients

Generic MCP client config:

{
  "mcpServers": {
    "notion-mcp": {
      "command": "/absolute/path/to/notion-mcp/scripts/run-mcp.sh",
      "args": []
    }
  }
}

This works best for desktop/local agent clients. Hosted deployments can be added later with HTTP transport, auth, and tenancy controls.

Tools

Search the connected Notion workspace/page tree.

{ "query": "launch checklist" }

Returns:

{
  "results": [
    {
      "title": "Launch Checklist",
      "pageId": "notion-page-id",
      "type": "page",
      "url": "https://notion.so/...",
      "lastEditedTime": "timestamp",
      "summary": "Notion page titled \"Launch Checklist\"."
    }
  ]
}

notion_get_page

Retrieve a Notion page and block content.

{ "pageId": "notion-page-id" }

Returns pageId, title, url, raw blocks, and extracted plainText.

notion_create_page

Create a new page under NOTION_ROOT_PAGE_ID or a provided parent page.

{
  "title": "New Project Decision",
  "content": "Content to add to the page",
  "parentPageId": "optional-page-id"
}

Create-only. It does not overwrite existing pages.

notion_append_to_page

Append content to an existing page.

{
  "pageId": "notion-page-id",
  "content": "New decision or note to append"
}

Append-only. It does not delete or replace page content.

project_list_apps

Returns project/app names configured in src/tools/projectTools.ts.

project_get_context

{ "projectName": "Example App" }

Use this to give agents a lightweight local context map before they search deeper in Notion.

mission_log_decision

{
  "projectName": "Example App",
  "decisionTitle": "Use MCP as the documentation bridge",
  "decisionDetails": "Agents can write safe append-only documentation through MCP.",
  "category": "architecture"
}

codex_generate_prompt

{
  "projectName": "Example App",
  "goal": "Implement the next safe documentation workflow",
  "constraints": ["Use existing app architecture", "Prioritize safe implementation"]
}

Security Model

Every tool has a risk level.

Executable in V1:

  • read: search, retrieve, list context.

  • safe_write: create or append documentation without deleting or replacing content.

Prepared but blocked in V1:

  • operational: non-destructive live app operations.

  • restricted: destructive, sensitive, financial, production, auth, access, or security-changing actions.

Human approval should be required before any future tool can:

  • Delete content.

  • Change user access.

  • Change billing or license state.

  • Lock users out.

  • Send external emails.

  • Modify production settings.

  • Trigger production deployments.

  • Change security policies.

  • Change secrets, API keys, or auth settings.

Recommended security practices:

  • Use a dedicated Notion integration token for each deployment.

  • Share only the specific Notion pages/databases the server needs.

  • Keep .env out of git.

  • Rotate tokens if they are exposed.

  • Prefer local/file audit logs for prototypes and Supabase/Postgres audit logs for teams.

  • Add new tools behind explicit schemas, risk levels, and tests.

Audit Logging

Every tool call is logged with:

  • id

  • timestamp

  • toolName

  • riskLevel

  • inputSummary

  • success

  • errorMessage

  • requestingAgent

  • projectName

  • notionPageId

  • durationMs

If Supabase is configured, logs are inserted into tool_calls. Otherwise logs are written to .audit/tool-calls.jsonl.

Optional Supabase table:

create table if not exists tool_calls (
  id uuid primary key,
  timestamp timestamptz not null,
  tool_name text not null,
  risk_level text not null,
  input_summary text not null,
  success boolean not null,
  error_message text,
  requesting_agent text,
  project_name text,
  notion_page_id text,
  duration_ms integer not null
);

Works With Any App Maturity Level

No app architecture:

  • Use Notion MCP as your first bridge between AI and project docs.

  • Keep decisions, prompts, checklists, notes, and roadmaps in Notion.

Intermediate app architecture:

  • Configure your projects in src/tools/projectTools.ts.

  • Use mission_log_decision and codex_generate_prompt to keep implementation work tied to Notion context.

Advanced agent architecture:

  • Add connector folders under src/connectors/.

  • Keep app-specific APIs behind approved tools.

  • Require human approval for operational and restricted actions.

  • Use audit logs to review what each agent did.

Customize

Edit:

src/tools/projectTools.ts

to define your own apps/projects.

Add future connectors under:

src/connectors/

When adding a new tool:

  1. Define a Zod input schema.

  2. Assign a risk level.

  3. Wrap execution with runLoggedTool.

  4. Keep restricted actions blocked unless you add an explicit human approval workflow.

  5. Add focused tests.

Test

npm test
npm run typecheck
npm run build

Manual tests:

  • Run notion_search with a known query.

  • Run notion_get_page with a valid page ID.

  • Run notion_create_page without parentPageId and confirm it appears under NOTION_ROOT_PAGE_ID.

  • Run notion_append_to_page and confirm existing page content is preserved.

  • Remove Supabase env vars and confirm .audit/tool-calls.jsonl receives entries.

  • Remove NOTION_TOKEN and confirm Notion tools fail with a clear missing environment error.

  • Use an invalid Notion page ID and confirm the tool fails and logs the failure.

  • Confirm operational/restricted risk levels throw in tests.

Deployment Notes

V1 is a local stdio MCP server. That is the simplest and safest first shape for personal agents, desktop clients, and local developer workflows.

For hosted use, add:

  • HTTP or Streamable HTTP transport.

  • API key or OAuth auth.

  • Per-tenant Notion tokens.

  • Rate limiting.

  • Centralized audit logging.

  • Deployment-specific secret management.

Do not deploy a public shared instance with one global Notion token. Each user/team should bring their own Notion integration and credentials.

License

MIT

Available Tools

8 tools
codex_generate_promptGenerate Codex PromptC
Read-only

Generate a Codex-ready implementation prompt from configured project context and a current goal. Risk: read.

ParametersJSON Schema
NameRequiredDescriptionDefault
goalYes
constraintsNo
projectNameYes
requestingAgentNo

TDQS

C2.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds 'Risk: read', confirming it is a read-only operation. Annotations already set readOnlyHint=true, so there is no contradiction. However, the description does not disclose any additional behavioral traits beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise with two short sentences, but the brevity sacrifices informative content. It is front-loaded with the key action but lacks necessary details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 4 parameters, no output schema, and read-only annotations, the description is not complete. It does not explain return values, parameter details, or usage context, leaving significant gaps for an AI agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description should compensate but only mentions 'from configured project context and a current goal'. It does not explain the purpose of 'constraints', 'requestingAgent', or how 'goal' and 'projectName' relate. This is insufficient for an agent to understand parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool generates a 'Codex-ready implementation prompt' from 'configured project context and a current goal'. The verb 'generate' and resource 'implementation prompt' are specific, and it distinguishes from sibling tools like notion_* or project_get_context. However, 'configured project context' is somewhat vague.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool vs siblings, no conditions, prerequisites, or alternatives. It only states what the tool does, not when it is appropriate to invoke.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mission_log_decisionLog Project DecisionA

Log an architecture, product, business, security, or implementation decision to Notion. Risk: safe_write.

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryNoimplementation
projectNameYes
decisionTitleYes
decisionDetailsYes
requestingAgentNo

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate non-destructive write (readOnlyHint=false, destructiveHint=false). The description adds 'Risk: safe_write', clarifying the write is safe but doesn't elaborate on side effects, like which Notion page is updated or whether existing content is modified. Adds some context beyond annotations but could be more thorough.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two sentences, no filler, front-loaded with purpose. Every word adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 parameters, 3 required, no output schema, and no parameter descriptions, the description is too sparse. It does not explain the return value, which Notion page the decision is logged to, or how the parameters should be used. This lacks completeness for an agent to use it reliably.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 0% schema description coverage, the description must explain parameters, but it only covers the 'category' parameter implicitly via listing categories. It does not describe 'projectName', 'decisionTitle', 'decisionDetails', or 'requestingAgent', leaving their semantics unclear. This is a significant gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'log' and the resource 'decision to Notion', listing specific categories (architecture, product, business, security, implementation). This distinguishes it from sibling tools like notion_create_page or codex_generate_prompt, which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when a decision needs to be recorded, but it does not explicitly state when not to use this tool or provide alternatives. Given siblings include other Notion tools (append, create, get, search), the lack of exclusion criteria limits guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

notion_append_to_pageAppend To Notion PageA

Append content to an existing Notion page without replacing or deleting content. Risk: safe_write.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageIdYes
contentYes
requestingAgentNo

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds value beyond annotations by explicitly stating 'without replacing or deleting content' and noting 'Risk: safe_write'. This provides context that complements the destructiveHint=false annotation. It does not disclose behavior on missing page IDs or rate limits, but the key behavioral traits are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: one sentence plus a two-word phrase. Every word serves a purpose, and key information is front-loaded. No unnecessary content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple append tool with no output schema, the description provides the essential action and safety hint. However, it lacks information about error handling, prerequisites (e.g., page existence), or return values, leaving some gaps for complete agent understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description only mentions 'content' generically and does not explain the purpose or format of pageId, content, or requestingAgent. No additional parameter semantics are provided, failing to compensate for the lack of schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Append' and the resource 'content to an existing Notion page', distinguishing it from sibling tools like notion_create_page and notion_get_page. It explicitly notes that content is added without replacing or deleting, which clarifies its unique function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for appending content to an existing page, and mentions 'safe_write' as a risk indicator. However, it does not explicitly state when not to use it or compare to alternatives like notion_create_page, leaving some ambiguity for the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

notion_create_pageCreate Notion PageA

Create a new Notion page under the configured root page or provided parent page. Risk: safe_write.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYes
contentYes
parentPageIdNo
requestingAgentNo

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate non-read-only and non-destructive behavior. The description adds 'Risk: safe_write', clarifying that it is a write operation but safe (no unintended damage). This extra context slightly raises transparency, though more details (e.g., permission requirements) could be added.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: two sentences, no wasted words. Every sentence adds value (purpose and safety hint). It is front-loaded with the action and location, making it easy to scan.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 4 parameters with no schema descriptions, no output schema, and no explanation of content format (e.g., Markdown), the description is too brief. It lacks details on default behavior (e.g., root page if parentPageId omitted), return values, and prerequisites, making it incomplete for effective invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% (no parameter descriptions). The description mentions 'parent page' which relates to the optional 'parentPageId', but provides no further meaning for parameters like 'title', 'content', or 'requestingAgent'. It fails to compensate for missing schema descriptions, leaving agents to guess formats or constraints.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'create' and the resource 'Notion page', and specifies the location context ('under the configured root page or provided parent page'). This distinguishes it from sibling tools like 'notion_append_to_page' (which appends to an existing page) and 'notion_get_page' (which retrieves).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies use for creating new pages, but provides no explicit guidance on when to use this tool versus alternatives (e.g., 'notion_append_to_page' for adding content to an existing page). No when-not or alternative scenarios are mentioned, leaving the agent to infer from context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

notion_get_pageGet Notion PageB
Read-onlyIdempotent

Retrieve a Notion page and its block content. Risk: read.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageIdYes
requestingAgentNo

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds 'Risk: read' which is consistent but adds minimal value. No additional behavioral context (e.g., rate limits, auth needs, output format) is provided beyond what annotations convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that efficiently communicates the core purpose. However, it could be enhanced with additional context without becoming verbose, such as mentioning the return format or common use cases.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool is a simple get operation with good annotations, the description provides the essential action and risk. However, it lacks information about the return value (since no output schema exists), potential errors, and how to handle the 'pageId' format. The description is adequate but not fully complete for an agent to use without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, meaning the input schema provides no descriptions for parameters. The description mentions retrieving a page and its block content, which gives context for the pageId parameter, but the requestingAgent parameter is completely undocumented. The description fails to compensate for the lack of schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'retrieve' and the resource 'Notion page and its block content', providing a specific and unambiguous purpose. It distinguishes from sibling tools like notion_append_to_page (write) and notion_create_page (write), and notion_search (search-based retrieval).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lacks any guidance on when to use this tool versus alternatives such as notion_search. No context is provided about prerequisites, required permissions, or exclusions, leaving the agent to infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

project_get_contextGet Project ContextC
Read-onlyIdempotent

Retrieve configured project context. Risk: read.

ParametersJSON Schema
NameRequiredDescriptionDefault
projectNameYes
requestingAgentNo

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds only 'Risk: read', which is redundant. No additional behavioral traits (e.g., performance, data scope) are disclosed beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely short (one sentence), which is concise but at the cost of missing critical details. It is front-loaded but under-specifies the tool's behavior and parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the low schema coverage and absence of an output schema, the description fails to explain what the tool returns or what constitutes 'configured project context'. The 'requestingAgent' role is unclear, leaving the agent ill-equipped to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, meaning neither the schema nor the description provides any explanation for the two parameters ('projectName', 'requestingAgent'). The agent receives no semantic hints about how to use these parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action ('Retrieve') and resource ('configured project context'), with 'Risk: read' indicating a safe read operation. This distinguishes it from sibling tools like 'notion_get_page' or 'project_list_apps'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus its siblings. The description lacks context on prerequisites, scenarios, or when not to use it, leaving the agent without decision support.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

project_list_appsList Configured AppsA
Read-onlyIdempotent

Return app/project names configured for this workspace. Risk: read.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint, idempotentHint, destructiveHint. The description adds 'Risk: read', which is consistent but adds little value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Extremely concise: one clear sentence plus a brief risk note. Every phrase earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema and simple purpose, the description adequately conveys the tool's function. Could be slightly improved by specifying output format (e.g., array of strings), but realistically sufficient for a list operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Tool has zero parameters, so baseline is 4. Description adds no parameter info, but none is needed since schema coverage is 100% and no parameters exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns app/project names for the workspace, using specific verb 'Return' and resource 'app/project names'. It distinguishes from sibling tools like project_get_context or notion_search which have different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The description only implies its usage for listing app/project names, but does not provide when-not-to-use or mention sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: codex prompt generation, decision logging, Notion page operations (append, create, get, search), and project context retrieval. No overlaps.

Naming Consistency4/5

Names follow snake_case and use a <domain>_<action> pattern, but prefixes vary (codex_, mission_log_, notion_, project_). Within each domain, naming is consistent; overall pattern is readable but not fully uniform.

Tool Count5/5

8 tools is well-scoped for a Notion integration covering core operations (create, get, search, append) plus additional project context and decision logging. No redundancy.

Completeness3/5

Covers create, read, search, and append for Notion pages, but missing update and delete operations. Project context and decision logging are included, but the Notion surface is incomplete for full CRUD.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Limelight-Management-Group/notion-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server