Creedn is MCP-native. Connect any MCP-compatible AI agent to your creator business in under 2 minutes. 20 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, analytics: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 agent now has access to your real Creedn data. Try asking it to "list my brand deals" 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 agent can query deals, analytics, revenue, roster, and news but cannot create or modify records.
Pro
Full read + write access. Your agent can autonomously manage your deal pipeline, generate invoices, schedule content, and update agent memory.
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.
get_analyticsPlatform analytics: followers, engagement, reach.
list_rosterList all creators with stats, commission rates, contract status.
get_creator_detailDetailed profile and deal history for a roster creator.
calculate_commissionCalculate agency vs creator splits for a deal value.
list_invoicesList invoices with payment status and totals.
create_invoiceGenerate a new invoice for a completed deal.
get_content_calendarGet scheduled and planned content items.
get_niche_newsFetch trending news articles relevant to a niche.
add_to_calendarSchedule a content item to the creator's calendar.
scan_deals_from_gmailScan connected Gmail for brand deal opportunities.
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.
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.