{"name":"CollaBevy","description":"AI-powered collaboration management platform for content creators. Manage brand deals, contracts, deliverables, and payments through natural language commands.","url":"https://www.collabevy.com","version":"1.0.0","protocol_version":"0.3","provider":{"organization":"CollaBevy","url":"https://www.collabevy.com"},"capabilities":{"streaming":false,"pushNotifications":false,"stateTransitionHistory":true},"authentication":{"schemes":["bearer"],"credentials":{"bearer":{"description":"API key from CollaBevy developer portal. Create an API key at the developer dashboard to authenticate requests.","acquisition_url":"https://www.collabevy.com/creator/developers"}}},"defaultInputModes":["application/json"],"defaultOutputModes":["application/json"],"skills":[{"id":"collab-list","name":"List Collaborations","description":"Retrieve all collaborations for the authenticated creator with optional filtering by status, brand, or date range","tags":["collaborations","read","list"],"examples":["Show me all my active collaborations","List brand deals from last month","Get collaborations with status 'in_progress'","Find all completed deals with Nike"],"inputSchema":{"type":"object","properties":{"status":{"type":"string","description":"Filter by collaboration status","enum":["draft","active","in_progress","completed","cancelled"]},"brand_name":{"type":"string","description":"Filter by brand name (partial match)"},"from_date":{"type":"string","format":"date","description":"Filter collaborations created on or after this date"},"to_date":{"type":"string","format":"date","description":"Filter collaborations created on or before this date"},"limit":{"type":"integer","description":"Maximum number of results to return","default":20,"minimum":1,"maximum":100},"offset":{"type":"integer","description":"Number of results to skip for pagination","default":0,"minimum":0}}},"outputSchema":{"type":"object","properties":{"collaborations":{"type":"array","description":"List of collaboration objects"},"total":{"type":"integer","description":"Total count of matching collaborations"},"has_more":{"type":"boolean","description":"Whether more results are available"}}}},{"id":"collab-create","name":"Create Collaboration","description":"Create a new collaboration/brand deal with specified details including brand, deliverables, timeline, and payment terms","tags":["collaborations","write","create"],"examples":["Create a new Instagram collaboration with Nike","Set up a brand deal for $5000 with 3 deliverables","Start a new partnership with Adidas for next month"],"inputSchema":{"type":"object","required":["brand_name","title"],"properties":{"title":{"type":"string","description":"Title of the collaboration","minLength":1,"maxLength":200},"brand_name":{"type":"string","description":"Name of the brand/company","minLength":1,"maxLength":200},"brand_email":{"type":"string","format":"email","description":"Contact email for the brand representative"},"brand_contact_name":{"type":"string","description":"Name of the brand contact person"},"description":{"type":"string","description":"Detailed description of the collaboration"},"total_value":{"type":"number","description":"Total monetary value of the deal","minimum":0},"currency":{"type":"string","description":"Currency code (e.g., USD, EUR, GBP)","default":"USD"},"start_date":{"type":"string","format":"date","description":"Start date of the collaboration"},"end_date":{"type":"string","format":"date","description":"End date of the collaboration"},"platforms":{"type":"array","items":{"type":"string"},"description":"Social media platforms involved (e.g., instagram, youtube, tiktok)"}}},"outputSchema":{"type":"object","properties":{"id":{"type":"string","description":"Unique ID of the created collaboration"},"status":{"type":"string","description":"Initial status of the collaboration"}}}},{"id":"collab-update-status","name":"Update Collaboration Status","description":"Change the status of a collaboration through its workflow stages (draft -> active -> in_progress -> completed)","tags":["collaborations","write","workflow","status"],"examples":["Mark collaboration as active","Move the Nike deal to in_progress","Complete the Adidas partnership","Cancel the pending collaboration"],"inputSchema":{"type":"object","required":["collab_id","status"],"properties":{"collab_id":{"type":"string","format":"uuid","description":"ID of the collaboration to update"},"status":{"type":"string","enum":["draft","active","in_progress","completed","cancelled"],"description":"New status for the collaboration"},"notes":{"type":"string","description":"Optional notes about the status change"}}},"outputSchema":{"type":"object","properties":{"id":{"type":"string","description":"ID of the updated collaboration"},"previous_status":{"type":"string","description":"Status before the update"},"new_status":{"type":"string","description":"Status after the update"}}}},{"id":"collab-get-details","name":"Get Collaboration Details","description":"Retrieve full details of a specific collaboration including all related contracts, deliverables, invoices, and payment phases","tags":["collaborations","read","details"],"examples":["Get details of my Nike collaboration","Show full information about deal abc123","What are the deliverables for my latest collaboration?"],"inputSchema":{"type":"object","required":["collab_id"],"properties":{"collab_id":{"type":"string","format":"uuid","description":"ID of the collaboration to retrieve"},"include":{"type":"array","items":{"type":"string","enum":["contracts","deliverables","invoices","payments","assets"]},"description":"Related entities to include in the response (defaults to all)"}}},"outputSchema":{"type":"object","properties":{"collaboration":{"type":"object","description":"Full collaboration details"},"contracts":{"type":"array","description":"Associated contracts (if requested)"},"deliverables":{"type":"array","description":"Associated deliverables (if requested)"},"invoices":{"type":"array","description":"Associated invoices (if requested)"},"payments":{"type":"array","description":"Payment phases (if requested)"},"assets":{"type":"array","description":"Uploaded assets (if requested)"}}}},{"id":"analytics-summary","name":"Get Analytics Summary","description":"Retrieve summary analytics including total revenue, active collaborations, pending deliverables, and upcoming deadlines","tags":["analytics","read","summary","dashboard"],"examples":["Show me my earnings summary","What are my analytics for this month?","How many active deals do I have?","Give me an overview of my collaborations"],"inputSchema":{"type":"object","properties":{"period":{"type":"string","enum":["week","month","quarter","year","all_time"],"description":"Time period for analytics","default":"month"}}},"outputSchema":{"type":"object","properties":{"total_revenue":{"type":"number","description":"Total earned revenue in the period"},"pending_revenue":{"type":"number","description":"Revenue from active/unpaid collaborations"},"active_collaborations":{"type":"integer","description":"Number of active collaborations"},"completed_collaborations":{"type":"integer","description":"Number of completed collaborations in period"},"pending_deliverables":{"type":"integer","description":"Number of pending deliverables"},"overdue_deliverables":{"type":"integer","description":"Number of overdue deliverables"},"upcoming_deadlines":{"type":"array","description":"List of upcoming deadlines (next 7 days)"}}}},{"id":"analytics-revenue","name":"Get Revenue Analytics","description":"Detailed revenue breakdown by period, brand, platform, or collaboration type","tags":["analytics","read","revenue","financial"],"examples":["Show my revenue by month","Which brands have paid me the most?","Revenue breakdown by platform","Compare my earnings this quarter vs last quarter"],"inputSchema":{"type":"object","properties":{"group_by":{"type":"string","enum":["month","brand","platform","status"],"description":"How to group the revenue data","default":"month"},"from_date":{"type":"string","format":"date","description":"Start date for the analysis period"},"to_date":{"type":"string","format":"date","description":"End date for the analysis period"},"currency":{"type":"string","description":"Currency for the results (defaults to USD)","default":"USD"}}},"outputSchema":{"type":"object","properties":{"total":{"type":"number","description":"Total revenue in the period"},"currency":{"type":"string","description":"Currency of the amounts"},"breakdown":{"type":"array","description":"Revenue breakdown by the specified grouping"},"comparison":{"type":"object","description":"Comparison with previous period (if applicable)"}}}},{"id":"analytics-deadlines","name":"Get Upcoming Deadlines","description":"List all upcoming deadlines for deliverables, contracts, and payment milestones","tags":["analytics","read","deadlines","scheduling"],"examples":["What deadlines do I have this week?","Show upcoming deliverable due dates","When are my next payments due?","List all deadlines for the next 30 days"],"inputSchema":{"type":"object","properties":{"days_ahead":{"type":"integer","description":"Number of days ahead to look for deadlines","default":30,"minimum":1,"maximum":365},"type":{"type":"string","enum":["all","deliverables","contracts","payments"],"description":"Type of deadlines to include","default":"all"},"include_overdue":{"type":"boolean","description":"Include overdue items in the results","default":true}}},"outputSchema":{"type":"object","properties":{"deadlines":{"type":"array","description":"List of upcoming deadlines sorted by date"},"overdue":{"type":"array","description":"List of overdue items (if requested)"},"summary":{"type":"object","description":"Summary counts by type and urgency"}}}},{"id":"schedule-deliverables","name":"Schedule Deliverables","description":"Create or update deliverable schedules for a collaboration, including platform-specific content with due dates","tags":["scheduling","write","deliverables","content"],"examples":["Schedule 3 Instagram posts for next week","Add a YouTube video deliverable due on Friday","Update the deadline for my TikTok deliverable","Create deliverable schedule for Nike collaboration"],"inputSchema":{"type":"object","required":["collab_id","deliverables"],"properties":{"collab_id":{"type":"string","format":"uuid","description":"ID of the collaboration"},"deliverables":{"type":"array","items":{"type":"object","required":["title","platform","due_date"],"properties":{"title":{"type":"string","description":"Title of the deliverable"},"description":{"type":"string","description":"Detailed description of what needs to be delivered"},"platform":{"type":"string","enum":["instagram","youtube","tiktok","twitter","facebook","linkedin","blog","other"],"description":"Platform for the content"},"content_type":{"type":"string","enum":["post","story","reel","video","short","article","tweet","other"],"description":"Type of content to create"},"due_date":{"type":"string","format":"date-time","description":"Due date and time for the deliverable"}}},"description":"List of deliverables to create"}}},"outputSchema":{"type":"object","properties":{"created":{"type":"array","description":"List of created deliverable IDs"},"total":{"type":"integer","description":"Total number of deliverables created"}}}},{"id":"schedule-payments","name":"Schedule Payment Phases","description":"Create or update payment milestone schedule for a collaboration, defining when payments are due","tags":["scheduling","write","payments","milestones"],"examples":["Set up 50/50 payment split for the deal","Add payment milestone on contract signing","Schedule final payment after delivery approval","Create 3 payment phases for the collaboration"],"inputSchema":{"type":"object","required":["collab_id","phases"],"properties":{"collab_id":{"type":"string","format":"uuid","description":"ID of the collaboration"},"phases":{"type":"array","items":{"type":"object","required":["name","amount","due_date"],"properties":{"name":{"type":"string","description":"Name of the payment phase (e.g., 'Deposit', 'Final Payment')"},"amount":{"type":"number","description":"Amount for this payment phase","minimum":0},"currency":{"type":"string","description":"Currency code (defaults to collaboration currency)"},"due_date":{"type":"string","format":"date","description":"Due date for the payment"},"trigger":{"type":"string","enum":["on_signing","on_delivery","on_approval","on_date"],"description":"What triggers this payment","default":"on_date"},"notes":{"type":"string","description":"Additional notes about this payment phase"}}},"description":"List of payment phases to create"}}},"outputSchema":{"type":"object","properties":{"created":{"type":"array","description":"List of created payment phase IDs"},"total_amount":{"type":"number","description":"Total amount across all phases"}}}},{"id":"schedule-get-calendar","name":"Get Calendar View","description":"Retrieve calendar view of all scheduled activities including deliverable due dates, payment dates, and contract deadlines","tags":["scheduling","read","calendar","overview"],"examples":["Show my content calendar for this month","What's scheduled for next week?","Get all activities between January and March","Calendar view of upcoming deadlines"],"inputSchema":{"type":"object","properties":{"from_date":{"type":"string","format":"date","description":"Start date for the calendar view"},"to_date":{"type":"string","format":"date","description":"End date for the calendar view"},"include":{"type":"array","items":{"type":"string","enum":["deliverables","payments","contracts"]},"description":"Types of events to include","default":["deliverables","payments","contracts"]},"collab_id":{"type":"string","format":"uuid","description":"Filter to a specific collaboration (optional)"}}},"outputSchema":{"type":"object","properties":{"events":{"type":"array","description":"List of calendar events sorted by date"},"summary":{"type":"object","description":"Summary of events by type"},"date_range":{"type":"object","description":"The actual date range of the results"}}}}]}