MCP server for Notion prompts database
Connect Prompt Book to Claude, Cursor or any other MCP client and it stops being a tab you switch to. MCP server for Notion prompts database. The prompt book mcp server is what makes that connection.
An MCP server that connects to Notion databases containing AI prompts, allowing you to manage, search, and retrieve prompts efficiently across multiple prompt collections.
The toolset is worth reading before you wire it up, because it tells you what the integration is really for:
list_prompt_books — Lists all configured prompt bookscreate_prompt_book_config — Adds a new prompt book configurationremove_prompt_book_config — Removes a prompt book configurationactivate_prompt_book — Sets a prompt book as activerename_prompt_book — Renames a prompt book configurationcreate_prompt_database — Creates a new prompt database in Notion and adds it to the configurationcopy_prompt — Copies a prompt from one book to anotherlist_prompts — Lists all prompts in the active databasesearch_prompts_by_title — Searches prompts by titleget_prompts_by_tag — Gets prompts filtered by a specific tagget_prompts_by_type — Gets prompts filtered by a specific typeread_prompt — Reads the full content of a specific prompt@piccollage/prompt-book-mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.
Configuration is passed through the environment: DEFAULT_BOOKS. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Prompt Book's toolset — list_prompt_books, create_prompt_book_config, remove_prompt_book_config and 11 more — is a fair guide to whether it matches your workflow. It is maintained by cardinalblue; 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.
| Tool | What it does |
|---|---|
| list_prompt_books | Lists all configured prompt books |
| create_prompt_book_config | Adds a new prompt book configuration |
| remove_prompt_book_config | Removes a prompt book configuration |
| activate_prompt_book | Sets a prompt book as active |
| rename_prompt_book | Renames a prompt book configuration |
| create_prompt_database | Creates a new prompt database in Notion and adds it to the configuration |
| copy_prompt | Copies a prompt from one book to another |
| list_prompts | Lists all prompts in the active database |
| search_prompts_by_title | Searches prompts by title |
| get_prompts_by_tag | Gets prompts filtered by a specific tag |
| get_prompts_by_type | Gets prompts filtered by a specific type |
| read_prompt | Reads the full content of a specific prompt |
| list_all_types | Lists all unique prompt types in the database |
| list_all_tags | Lists all unique tags used in the database |
{
"mcpServers": {
"prompt-book-server": {
"command": "npx",
"args": [
"-y",
"@piccollage/prompt-book-mcp-server"
],
"disabled": false,
"alwaysAllow": []
}
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| DEFAULT_BOOKS | Configuration value read at startup. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.