Creedn is MCP-native. Connect any MCP-compatible AI tool — Claude, ChatGPT, Gemini — to your creator business in under 2 minutes. 24 tools. Real data. No hallucinations.
Go to Settings → API Keys and click "New key". Choose the permission scopes your agent needs (e.g. deals:read, invoices:read).
Copy the key immediately — it's only shown once.
Add the following to your MCP client's configuration file:
{
"mcpServers": {
"creedn": {
"url": "https://creedn.com/api/mcp",
"headers": {
"Authorization": "Bearer sk-creedn-YOUR_KEY_HERE"
}
}
}
}Your AI now has access to your real Creedn data. Try asking it to "list my brand deals", "handle my inbox", or "show my revenue summary". All responses come from your actual data — no fabricated content.
Every request to POST /api/mcp requires a Bearer token in the Authorization header:
Authorization: Bearer sk-creedn-abc123...
API keys are hashed with SHA-256 before storage — Creedn never stores your raw key. Each key has granular permission scopes that control which tools the agent can call.
Each tool requires a specific scope (e.g. deals:read). Write scopes automatically grant read access for the same resource.
MCP requests are limited to 30 requests per minute per user. Standard X-RateLimit-* and Retry-After headers are returned.
Free
Read-only access to all data. Your AI tool can query deals, analytics, revenue, inbox, and news but cannot create or modify records.
Pro
Full read + write access. Your AI tool can autonomously manage your deal pipeline, negotiate with brands, generate and send invoices, and handle your inbox.
list_dealsList brand deals with optional status and limit filters.
get_dealGet full details of a single brand deal by UUID.
create_dealCreate a new brand deal from detected opportunities.
update_dealMove deals through the pipeline or update values.
get_revenue_summaryFinancial summary: total earned, pending, MoM growth.
list_invoicesList invoices with payment status and totals.
create_invoiceGenerate a new invoice for a completed deal.
update_invoiceUpdate invoice status (draft→sent→paid). Marking paid auto-logs revenue. Optionally emails the invoice to the client.
send_invoiceCreate an invoice and immediately email it to the client via Gmail — one call, done.
scan_deals_from_gmailScan connected Gmail for brand deal opportunities.
send_emailSend any email via the creator's connected Gmail. Use for follow-ups, outreach, or custom messages.
get_profileGet the authenticated user's profile and account type.
read_inboxList inbound brand emails from collab.creedn.com with AI summaries and detected budgets.
list_partnership_emailsList brand partnership emails with richer filters — unread only, by classification (new_deal, deal_reply, general).
get_email_detailsGet full content (including message body) for a specific partnership email. Use before replying or countering.
reply_to_brandSend a reply to a brand email in the partnership inbox.
action_dealAccept or decline a brand deal email. Accept auto-creates a deal card in the pipeline.
counter_brand_dealGenerate an AI counter-offer draft using your rate floor and voice profile. Set auto_send=true to send immediately.
get_agent_memoryRead rate floor, niche tags, blocked brands, trust levels.
update_agent_memoryUpdate rate floor, niche tags, or block a brand.
Protocol
MCP 2024-11-05
Transport
HTTP JSON-RPC 2.0
Endpoint
POST /api/mcp
Supported Methods
initializetools/listtools/callnotifications/initializedGenerate your API key and connect your agent in under 2 minutes.