notra
Enables LLM clients to manage posts, brand identities, integrations, schedules, chats, and skills through the Notra API.
README
Notra MCP Server
An MCP (Model Context Protocol) server that provides LLM clients with full access to the Notra API for managing posts, brand identities, integrations, and schedules.
Setup
You can generate an API key from your Notra workspace dashboard under Developer > API Keys.
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"notra": {
"command": "npx",
"args": ["-y", "@usenotra/mcp"],
"env": {
"NOTRA_API_KEY": "your-api-key"
}
}
}
}
Claude Code
claude mcp add notra -- npx -y @usenotra/mcp
Then set the NOTRA_API_KEY environment variable in your shell before launching Claude Code.
Remote MCP (OAuth)
The hosted streamable HTTP server at https://mcp.usenotra.com/mcp uses OAuth as the primary authentication method. MCP clients should discover protected resource metadata at:
https://mcp.usenotra.com/.well-known/oauth-protected-resource
That metadata points to the Notra authorization server at https://app.usenotra.com/.well-known/oauth-authorization-server, which supports dynamic client registration (RFC 7591).
API key alternative
Remote connections also accept a Notra API key as a static Authorization: Bearer … header. Generate one from your Notra workspace dashboard under Developer > API Keys. OAuth-capable clients should prefer the OAuth flow instead of manual key configuration.
For self-hosted HTTP deployments, OAuth validation can be configured with:
NOTRA_OAUTH_ISSUER=https://app.usenotra.com/api/auth
NOTRA_OAUTH_JWKS_URL=https://app.usenotra.com/api/auth/jwks
NOTRA_MCP_RESOURCE=https://mcp.usenotra.com
The issuer must match the iss claim in tokens minted by the authorization server (https://app.usenotra.com/api/auth); a mismatch causes every bearer token to be rejected.
When NODE_ENV=development, the default issuer is http://localhost:3000/api/auth; production defaults to https://app.usenotra.com/api/auth.
Tools
Posts
| Tool | Description |
|---|---|
list_posts |
List posts with optional filters for sorting, pagination, status, content type, and brand identity |
get_post |
Get a single post by ID |
update_post |
Update a post's title, markdown, or status |
delete_post |
Delete a post |
generate_post |
Queue async post generation from GitHub activity |
get_post_generation_status |
Check the status of a post generation job |
Brand Identities
| Tool | Description |
|---|---|
list_brand_identities |
List all brand identities |
get_brand_identity |
Get a single brand identity by ID |
update_brand_identity |
Update brand identity settings |
delete_brand_identity |
Delete a brand identity |
generate_brand_identity |
Queue async brand identity generation from a website URL |
get_brand_identity_generation_status |
Check the status of a brand identity generation job |
Integrations
| Tool | Description |
|---|---|
list_integrations |
List all connected integrations (GitHub, Slack, Linear) |
create_github_integration |
Connect a GitHub repository |
delete_integration |
Delete a GitHub or Linear integration |
Schedules
| Tool | Description |
|---|---|
list_schedules |
List scheduled content generation jobs |
create_schedule |
Create a scheduled content generation job |
update_schedule |
Update a scheduled content generation job |
delete_schedule |
Delete a scheduled content generation job |
Chats
| Tool | Description |
|---|---|
list_chats |
List chat sessions |
get_chat |
Get a single chat with messages |
get_chat_by_external_channel |
Get a chat by Discord or Slack channel ID |
create_chat |
Start a new chat and return the streamed reply |
post_chat_message |
Post a message to an existing chat and return the streamed reply |
Skills
| Tool | Description |
|---|---|
list_skills |
List reusable writing skills |
get_skill |
Get a single skill by name |
create_skill |
Create a reusable writing skill |
update_skill |
Update a reusable writing skill |
delete_skill |
Delete a reusable writing skill |
Feedback
| Tool | Description |
|---|---|
submit_feedback |
Send product feedback, a bug report, or a feature request |
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.