skills/notion/SKILL.md
Use this skill when you need to work with notion through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
npx skillsauth add manojbajaj95/mcp-skill notionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill when you need to work with notion through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
This app can use the MCP client's built-in OAuth flow when the server requires it.
In most cases, the default constructor is enough. Tokens are persisted to
~/.mcp-skill/auth/ so subsequent runs reuse the same credentials automatically.
app = NotionApp()
If you need a custom OAuth provider, pass it via the auth argument:
app = NotionApp(auth=my_oauth_provider)
This skill requires the following Python packages:
mcp-skillInstall with uv:
uv pip install mcp-skill
Or with pip:
pip install mcp-skill
Use the generated app directly in async Python code:
import asyncio
from notion.app import NotionApp
async def main():
app = NotionApp()
result = await app.notion_search(query="example", query_type="example", content_search_mode="example")
print(result)
asyncio.run(main())
async, so call it with await.asyncio.run(...) if you are in a script.await, you will get a coroutine object instead of the actual tool result.Use the CLI to find available apps, list functions on an app, and inspect a function before calling it:
uvx mcp-skill list-apps
uvx mcp-skill list-functions notion
uvx mcp-skill inspect notion notion_search
Important: Add .agents/skills to your Python path so imports resolve correctly:
import sys
sys.path.insert(0, ".agents/skills")
from notion.app import NotionApp
Or set the PYTHONPATH environment variable:
export PYTHONPATH=".agents/skills:$PYTHONPATH"
Preferred: use uv run (handles dependencies automatically):
PYTHONPATH=.agents/skills uv run --with mcp-skill python -c "
import asyncio
from notion.app import NotionApp
async def main():
app = NotionApp()
result = await app.notion_search(query="example", query_type="example", content_search_mode="example")
print(result)
asyncio.run(main())
"
Alternative: use python directly (install dependencies first):
pip install mcp-skill
PYTHONPATH=.agents/skills python -c "
import asyncio
from notion.app import NotionApp
async def main():
app = NotionApp()
result = await app.notion_search(query="example", query_type="example", content_search_mode="example")
print(result)
asyncio.run(main())
"
tools
Use this skill when you need to work with sentry through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when you need to work with pubmed through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when you need to work with search-mcp through its generated async Python app, call its MCP-backed functions from code, or inspect available functions with the mcp-skill CLI.
tools
Use this skill when working with the mcp-skill CLI to create generated MCP app wrappers, list available generated apps, list functions for a specific app, inspect a generated function signature and docstring, or understand how to call generated apps from async Python.