io.github.Shree-git/sendit
Official148 toolsSendIt
AI-native social media publishing to LinkedIn, Instagram, Threads, TikTok, and X.
Publish content to LinkedIn, Instagram, Threads, TikTok, and X from AI assistants.
Captured live from the server via tools/list.
publish_content
Publish content to social media platforms. MEDIA RULES: • mediaUrl must be a public HTTPS URL — NOT a local file path. • If the user shares an image/video in chat, call create_upload_session FIRST to get a browser upload link, then use the returned URL here. • Text-only works on: LinkedIn, Threads, X, Facebook. • Image required: Instagram, Pinterest. • TikTok supports one video or 1-35 Photo Mode images. • Video required: YouTube. Call validate_content to check before publishing.
Parameters (3)
- platformsarrayrequired
Target platforms. Choose based on content type: text-only→LinkedIn/Threads/X, image→Instagram/Threads/Facebook/Pinterest/TikTok Photo Mode, video→Instagram/TikTok/Threads/YouTube
- contentobjectrequired
- team_idstring
Team ID to publish as team. Get available teams with list_teams. If omitted, publishes from personal accounts.
schedule_content
Schedule content for future publishing. Same media rules as publish_content apply. • mediaUrl must be a public HTTPS URL — call create_upload_session if user shares a file in chat. • Content is validated at schedule time, not publish time.
Parameters (14)
- platformsarrayrequired
Target platforms - ensure content matches each platform's requirements
- contentobjectrequired
- scheduledTimestringrequired
ISO 8601 datetime in UTC (e.g., 2025-01-15T14:30:00Z)
- targetAccountsarray
Optional advanced scheduling target account IDs. Legacy handlers may ignore this until advanced scheduling is enabled.
- scheduleModestring
Optional forward-compatible scheduling mode. 'queue' asks SendIt to place the post in the next available queue slot.
- timezonestring
Optional IANA timezone for queue scheduling and recurring series metadata.
- platformOverridesobject
Optional forward-compatible per-platform overrides keyed by platform ID.
- mediaAttachmentsarray
Optional forward-compatible media asset attachments to associate with the scheduled post.
- recurrenceobject
Optional forward-compatible structured recurrence definition.
- recurrenceRulestring
Optional forward-compatible RRULE string for recurring schedules.
- recurrenceEndDatestring
Optional forward-compatible ISO 8601 end date for recurrence.
- scoreGatenumber
Optional forward-compatible minimum content score threshold for advanced scheduling flows.
- bypassTokenstring
Optional forward-compatible bypass token returned by advanced scheduling score-gate checks.
- team_idstring
Team ID to schedule as team. Get available teams with list_teams. If omitted, schedules from personal accounts.
get_analytics
Get engagement analytics for a platform. Facebook and TikTok can include account-wide posts not published through SendIt; unresolved TikTok inbox-draft deliveries may appear as placeholders until SendIt can link them.
Parameters (5)
- platformstringrequired
Platform to get analytics for
- startDatestring
Optional start date (YYYY-MM-DD). For Facebook, omit this to scan up to 2 years of Page feed history.
- endDatestring
Optional end date (YYYY-MM-DD).
- limitnumber
Optional maximum posts to return. Facebook feed scanning is capped at 1,000 posts.
- team_idstring
Team ID to get team analytics. If omitted, gets personal analytics.
list_teams
List all teams you belong to. Returns team names, IDs, and your role. Use the returned team ID with the team_id parameter in other tools to operate in team context.
No parameters.
list_connected_accounts
List all connected social media accounts. Pass team_id to see a team's accounts instead of your personal ones.
Parameters (1)
- team_idstring
Team ID to list team accounts. Get available teams with list_teams. If omitted, lists personal accounts.
get_tiktok_creator_info
Fetch fresh TikTok Content Posting API creator info for the connected account. Use this before rendering TikTok publish settings.
Parameters (1)
- team_idstring
Team ID to fetch the team TikTok account. If omitted, uses the personal TikTok account.
get_scheduled_posts
List scheduled posts and their current status, including pending, publishing, TikTok draft-delivered, published, failed, or cancelled posts.
Parameters (8)
- platformstring
Filter by platform (optional)
- statusstring
Optional forward-compatible status filter. Legacy handlers may continue returning pending posts only.
- upcomingboolean
Optional forward-compatible flag to prefer upcoming scheduled posts.
- startDatestring
Optional forward-compatible lower date bound in YYYY-MM-DD format.
- endDatestring
Optional forward-compatible upper date bound in YYYY-MM-DD format.
- cursorstring
Optional forward-compatible pagination cursor from a previous scheduled-post listing response.
- limitnumber
Optional forward-compatible maximum number of scheduled posts to return.
- team_idstring
Team ID to list team's scheduled posts. If omitted, lists personal posts.
delete_scheduled_post
Cancel a scheduled post before it's published.
Parameters (2)
- scheduleIdstringrequired
Schedule ID to delete
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
delete_post
Delete a published post from a platform. Supports: X, Facebook, LinkedIn, Threads, YouTube, Pinterest, Bluesky, Mastodon, Telegram. Provide the post ID (database ID returned when published through SendIt), the platform post ID, or the post URL.
Parameters (3)
- platformstringrequired
Platform to delete from
- postIdstringrequired
Post identifier: database ID, platform post ID, or post URL
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
edit_post
Edit a published post on a supported platform. Updates the text/caption of an already published post. SUPPORTED: YouTube (title/description/tags), LinkedIn, Facebook, Mastodon, Telegram, Bluesky NOT SUPPORTED: X, Threads, Instagram, Pinterest, TikTok Requires the published post ID returned when the post was originally published through SendIt.
Parameters (6)
- postIdstringrequired
Published post ID (database ID returned when the post was published)
- textstring
New text/caption/commentary for the post
- titlestring
New title (YouTube only)
- descriptionstring
New description (YouTube only)
- tagsarray
New tags (YouTube only)
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_platform_requirements
Get detailed content requirements for a platform. Returns: Character limits, media specifications, rate limits, and special notes. Call this when you need specifics like exact character counts, file size limits, or supported formats. The publish_content description has a quick reference, but this tool provides complete details.
Parameters (1)
- platformstringrequired
Platform to get requirements for
validate_content
Validate content against platform requirements BEFORE publishing. USE THIS WHEN: • Unsure if content will work on target platforms • Publishing to multiple platforms with different requirements • Want to catch errors before attempting publish Returns specific errors (e.g., 'TikTok requires video', 'Instagram needs media') and warnings (e.g., 'text close to character limit').
Parameters (2)
- platformsarrayrequired
Platforms to validate against
- contentobjectrequired
upload_media
FOR CLAUDE DESKTOP ONLY (with filesystem access). For Claude.ai/web: Use create_upload_session instead - it provides a browser upload link. Upload local media to cloud storage, returning a public HTTPS URL. WHEN TO USE: • Instagram, LinkedIn, Threads, X: REQUIRED for local files before calling publish_content • TikTok: NOT NEEDED - pass local path directly to publish_content SUPPORTED FORMATS: • Images: jpg, png, gif, webp (max 10MB) • Videos: mp4, mov, webm (max 100MB) Returns { url: 'https://...' } for use in publish_content mediaUrl parameter.
Parameters (3)
- filePathstring
Local file path to upload (e.g., ~/Photos/image.jpg)
- mediaUrlstring
Existing public URL to validate (alternative to filePath)
- folderstring
Optional folder name for organizing uploads
create_upload_session
Create a browser upload link for media files. ALWAYS use this when the user shares an image or video in chat — their file is local and cannot be passed directly to publish_content. WORKFLOW: 1. Call this tool to get an uploadUrl 2. Give the user the link to open in their browser and upload their file 3. After upload, call get_upload_session to get the public media URL(s) 4. Use the returned URL with publish_content or schedule_content Supports up to 20 files per session. Expires in 15 minutes.
Parameters (1)
- mediaTypestring
Optional hint for expected media type
get_upload_session
Check the status of an upload session and get the media URL(s) once uploaded. Call this after the user clicks the upload link to see if they've completed the upload. Returns: • status: 'pending' - User hasn't uploaded yet • status: 'uploaded' - Upload complete, includes mediaUrl, mediaUrls, fileCount, mediaItems • status: 'expired' - Session expired (15 min limit)
Parameters (1)
- sessionIdstringrequired
The session ID returned from create_upload_session
create_goal
Create a new maker goal on Product Hunt. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt • Goal title limited to 280 characters If write access is not available, you'll receive an error with instructions to request whitelisting.
Parameters (2)
- titlestringrequired
Goal title (max 280 characters)
- dueAtstring
Optional due date in ISO 8601 format
complete_goal
Mark a Product Hunt goal as complete or incomplete. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt
Parameters (2)
- goalIdstringrequired
The ID of the goal to update
- completedbooleanrequired
Set to true to mark complete, false to mark incomplete
upvote_product
Upvote a product on Product Hunt. REQUIREMENTS: • Must have Product Hunt account connected • Write access requires app whitelisting by Product Hunt Provide the Product Hunt post ID (not the slug).
Parameters (1)
- postIdstringrequired
The Product Hunt post ID to upvote
get_producthunt_analytics
Get analytics for your products on Product Hunt. Returns: • Total products, votes, comments, reviews • Number of featured products • Per-product metrics including vote counts and ratings Works with read-only access (no whitelisting required).
Parameters (2)
- usernamestring
Product Hunt username (optional, defaults to connected account)
- limitnumber
Maximum products to fetch (default 20)
bulk_schedule
Schedule multiple posts at once from CSV content. USE THIS WHEN: • User has a spreadsheet or list of posts to schedule • Planning a content calendar for a month • Migrating content from another tool CSV FORMAT (required columns): • platform: linkedin, instagram, x, tiktok, threads • scheduled_time: ISO 8601 format (e.g., 2024-02-15T10:00:00Z) • text: Post content/caption OPTIONAL COLUMNS: • media_url: Image or video URL • first_comment: First comment to add (Instagram/LinkedIn) • hashtags: Additional hashtags to append PROCESS: 1. First call with validate_only: true to check for errors 2. Review validation report with user 3. Call again with validate_only: false to execute import
Parameters (4)
- csv_contentstringrequired
CSV content as a string (include header row)
- filenamestring
Optional filename for tracking (default: upload.csv)
- validate_onlyboolean
If true, only validate without scheduling. Default: true for safety.
- skip_errorsboolean
If true, skip rows with errors and schedule valid rows only
preview_content
Generate a visual preview of how content will appear on each platform. USE THIS WHEN: • Before publishing to see how posts will look • To validate content against platform requirements • To check character counts, hashtag limits, and media requirements Returns an HTML preview mockup for each platform with validation results: • Character count vs limit • Hashtag count (Instagram has 30 max) • Media requirement check • Platform-specific warnings and errors
Parameters (2)
- platformsarrayrequired
Platforms to generate previews for
- contentobjectrequired
connect_x
Get the OAuth URL to connect your X account.
No parameters.
connect_linkedin
Get the OAuth URL to connect your LinkedIn account.
No parameters.
connect_linkedin-page
Get the OAuth URL to connect your LinkedIn Page account.
No parameters.
connect_facebook
Get the OAuth URL to connect your Facebook account.
No parameters.
connect_instagram
Get the OAuth URL to connect your Instagram account.
No parameters.
connect_threads
Get the OAuth URL to connect your Threads account.
No parameters.
connect_bluesky
Get the credential setup schema to connect Bluesky using API key or token credentials.
No parameters.
connect_mastodon
Get the OAuth URL to connect your Mastodon account.
No parameters.
connect_nostr
Get the custom connection setup instructions for Nostr. Note: This is an unofficial connector and may change without notice.
No parameters.
connect_youtube
Get the OAuth URL to connect your YouTube account.
No parameters.
connect_tiktok
Get the OAuth URL to connect your TikTok account.
No parameters.
connect_lemmy
Get the credential setup schema to connect Lemmy using API key or token credentials.
No parameters.
connect_discord
Get the webhook setup schema to connect Discord.
No parameters.
connect_slack
Get the webhook setup schema to connect Slack.
No parameters.
connect_telegram
Get the credential setup schema to connect Telegram using API key or token credentials.
No parameters.
connect_pinterest
Get the OAuth URL to connect your Pinterest account.
No parameters.
connect_dribbble
Get the OAuth URL to connect your Dribbble account.
No parameters.
connect_devto
Get the credential setup schema to connect DEV.to using API key or token credentials.
No parameters.
connect_hashnode
Get the credential setup schema to connect Hashnode using API key or token credentials.
No parameters.
connect_gmb
Get the OAuth URL to connect your Google My Business account.
No parameters.
connect_whop
Get the credential setup schema to connect Whop using API key or token credentials. Note: This is an unofficial connector and may change without notice.
No parameters.
connect_producthunt
Get the OAuth URL to connect your Product Hunt account.
No parameters.
list_library
List saved content from your library. Returns drafts, templates, and evergreen content.
Parameters (5)
- typestring
Filter by content type
- categorystring
Filter by category
- searchstring
Search in title and text
- limitnumber
Maximum items to return (default 20, max 100)
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_library_item
Get a specific content library item by ID.
Parameters (2)
- idstringrequired
The content library item ID
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
save_to_library
Save content to your library as a draft, template, or evergreen content for reuse.
Parameters (10)
- titlestringrequired
Title for the saved content
- textstringrequired
The content text/caption
- typestring
Content type (default: draft)
- mediaUrlstring
Media URL (image or video)
- categorystring
Category for organization
- tagsarray
Tags for organization
- targetPlatformsarray
Which platforms this content is designed for
- evergreenEnabledboolean
Enable evergreen auto-republishing
- evergreenIntervalDaysnumber
Days between evergreen republishes
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
update_library_item
Update an existing content library item.
Parameters (10)
- idstringrequired
The content library item ID
- titlestring
New title
- textstring
New content text
- typestring
Content type
- mediaUrlstring
Media URL
- categorystring
Category
- tagsarray
Tags
- evergreenEnabledboolean
Enable evergreen
- evergreenIntervalDaysnumber
Republish interval in days
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
delete_library_item
Delete a content library item.
Parameters (2)
- idstringrequired
The content library item ID to delete
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
publish_from_library
Publish content directly from your library to one or more platforms.
Parameters (3)
- idstringrequired
The content library item ID to publish
- platformsarrayrequired
Platforms to publish to
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
trigger_scheduled_post
Manually trigger a scheduled post to publish immediately.
Parameters (2)
- scheduleIdstringrequired
The ID of the scheduled post to trigger
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_dead_letter
List posts that failed all retry attempts and were moved to the dead letter queue. Review and decide to requeue or discard them.
Parameters (3)
- statusstring
Filter by status (default: dead)
- limitnumber
Maximum items to return (default 50)
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
requeue_dead_letter
Requeue a dead letter post for another publishing attempt. Creates a new scheduled post from the dead letter entry.
Parameters (2)
- deadLetterIdstringrequired
The dead letter post ID to requeue
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_brand_voices
List all brand voice profiles. Brand voices guide AI content generation with tone, personality, writing rules, and example posts.
Parameters (1)
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
create_brand_voice
Create a brand voice profile to guide AI content generation. Configurable fields: • tone: Overall tone (professional, casual, energetic, witty, etc.) • personality: Brand personality description • writingStyle: Writing style guidelines • doRules: Array of things the brand voice SHOULD do • dontRules: Array of things the brand voice should NEVER do • examplePosts: Example posts in this brand voice • approvedHashtags: Preferred hashtags to prioritize • bannedWords: Words to never use in content • keyPhrases: Key phrases to incorporate naturally
Parameters (11)
- namestringrequired
Name for this brand voice profile
- tonestring
Overall tone (e.g., professional, casual, energetic)
- personalitystring
Brand personality description
- writingStylestring
Writing style guidelines
- doRulesarray
Things the brand voice SHOULD do
- dontRulesarray
Things the brand voice should NEVER do
- examplePostsarray
Example posts in this voice
- approvedHashtagsarray
Preferred hashtags
- bannedWordsarray
Words to never use
- keyPhrasesarray
Key phrases to incorporate
- isDefaultboolean
Set as the default brand voice
set_default_brand_voice
Set a brand voice profile as the default. The default brand voice is automatically used by all AI content generation tools.
Parameters (1)
- idstringrequired
The brand voice profile ID to set as default
list_pending_approvals
List all scheduled posts that are pending approval. These posts won't be published until approved.
No parameters.
approve_post
Approve a scheduled post that is pending approval. Once approved, it will be published at the scheduled time.
Parameters (3)
- postIdstringrequired
The scheduled post ID to approve
- commentstring
Optional approval comment
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
reject_post
Reject a scheduled post that is pending approval. The post will not be published.
Parameters (3)
- postIdstringrequired
The scheduled post ID to reject
- reasonstringrequired
Reason for rejection
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_inbox
List comment threads on your published posts. Returns threads from your social inbox, showing comments and replies from followers on your posts across all platforms.
Parameters (3)
- platformstring
Filter by platform (optional)
- statusstring
Filter by thread status (optional)
- limitnumber
Max threads to return (default 20)
reply_to_comment
Reply to a comment on one of your published posts. Supported platforms: X (reply tweets), Threads, Instagram, Facebook, YouTube. Not supported: LinkedIn, Pinterest, TikTok.
Parameters (2)
- threadIdstringrequired
The inbox thread ID to reply to
- textstringrequired
Your reply text
get_best_times
Get the optimal posting times for a platform based on your historical engagement data. Returns top time slots ranked by engagement score. Falls back to industry defaults when insufficient personal data exists.
Parameters (2)
- platformstringrequired
Platform to get best times for
- limitnumber
Number of time slots to return (default 5, max 20)
score_content
Score content quality on a 0-100 scale before publishing. Evaluates 5 factors (20 points each): 1. Text length optimization for target platforms 2. Hashtag count optimization 3. Posting time alignment with best engagement windows 4. Media presence (images/videos) 5. Content patterns (CTA, hooks, formatting, emoji) Returns overall score, per-factor breakdown, and improvement suggestions.
Parameters (5)
- platformsarrayrequired
Target platforms to score against
- textstringrequired
The post text content
- mediaUrlstring
Primary media URL (optional)
- mediaUrlsarray
Multiple media URLs for carousel (optional)
- scheduledTimestring
Scheduled publish time in ISO 8601 (optional, improves time score)
get_audit_log
Retrieve audit log entries for your account. Shows a timestamped trail of all actions performed: publishes, schedules, account connections, content library changes, etc. Filter by action type, resource type, or date range.
Parameters (5)
- actionstring
Filter by action (e.g. 'post.published', 'account.connected')
- resource_typestring
Filter by resource type (e.g. 'post', 'account', 'keyword')
- start_datestring
Start date (YYYY-MM-DD)
- end_datestring
End date (YYYY-MM-DD)
- limitnumber
Max entries to return (default 50, max 200)
generate_ai_media
Generate AI images or videos using approved media providers. Supported providers: - heygen-mcp: HeyGen Direct API or MCP video/avatar generation - codex-oauth-image: Codex OAuth image generation for gpt-image-2 Returns a job ID that can be polled for status.
Parameters (4)
- providerstringrequired
AI media provider
- promptstringrequired
Creative prompt for generation
- media_typestring
Type of media to generate (default: video)
- parametersobject
Provider-specific parameters (e.g. duration, resolution, style, aspectRatio)
check_ai_media_status
Check the status of an AI media generation job. Returns current status (pending, processing, completed, failed) and result URL when complete.
Parameters (1)
- job_idstringrequired
The AI media job ID to check
generate_content
Generate AI-powered platform-optimized content without publishing. Uses AI to create platform-specific text, hashtags, and titles from a prompt or media URL. Respects brand voice profiles if configured. Returns generated content variants for each target platform. Use publish_content to publish the generated content, or publish_ai to generate and publish in one step.
Parameters (7)
- platformsarrayrequired
Target platforms to generate content for
- mediaUrlstring
Media URL to analyze for content generation
- promptstring
Creative prompt or topic for content generation
- generationobject
Generation parameters for tone, style, and CTA
- hashtagsstring
Hashtag mode
- strictAiboolean
If true, fail instead of using fallback templates when AI is unavailable
- contentOverridesobject
Manual overrides for generated content
publish_ai
Generate AI content and publish it in a single step. Combines generate_content + publish_content into one call. First generates platform-optimized content using AI, then publishes to the specified platforms. Same platform requirements as publish_content apply.
Parameters (9)
- platformsarrayrequired
Target platforms to generate content for and publish to
- mediaUrlstring
Media URL for the post
- mediaUrlsarray
Multiple media URLs for carousel
- mediaTypestring
Media type hint
- promptstring
Creative prompt for AI content generation
- generationobject
- hashtagsstring
- strictAiboolean
- contentOverridesobject
create_library_item
Save content to your library as a draft, template, or evergreen content for reuse. Alias for save_to_library.
Parameters (9)
- titlestringrequired
Title for the saved content
- textstringrequired
The content text/caption
- typestring
Content type (default: draft)
- mediaUrlstring
Media URL (image or video)
- categorystring
Category for organization
- tagsarray
Tags for organization
- targetPlatformsarray
Which platforms this content is designed for
- evergreenEnabledboolean
Enable evergreen auto-republishing
- evergreenIntervalDaysnumber
Days between evergreen republishes
draft_reply
Generate an AI-powered reply draft for a social mention. Returns a draft with tone and safety flags.
Parameters (3)
- mention_idstringrequired
The ID of the mention to reply to (required)
- tonestring
Reply tone: friendly, professional, casual
- max_lengthnumber
Maximum reply length in characters (default: 280)
summarize_mentions
Cluster and summarize recent social mentions by theme and sentiment using AI.
Parameters (4)
- sincestring
ISO date string — only include mentions after this date
- platformstring
Filter to a specific platform
- keyword_idstring
Filter to mentions matching a specific keyword
- limitnumber
Max mentions to analyze (default: 30, max: 50)
generate_post_bundle
Generate multi-variant AI content with quality scoring for multiple platforms. Returns the best variant plus alternatives.
Parameters (4)
- platformsarrayrequired
Target platforms (required)
- promptstringrequired
Content topic or instructions (required)
- variant_countnumber
Number of variants to generate (1-5, default: 3)
- generationobject
Generation parameters (tone, style, CTA)
critique_post
Score and critique post content with AI-powered suggestions. Returns a quality score (0-100), breakdown, and improvement tips.
Parameters (3)
- platformsarrayrequired
Target platforms for scoring context (required)
- textstringrequired
Post text to critique (required)
- mediaUrlstring
Optional media URL for media score
connect_platform
Connect a platform dynamically by platform ID. Returns OAuth URL, webhook setup details, or credential form contract depending on the platform auth method.
Parameters (1)
- platformstringrequired
Platform ID to connect
get_platform_settings_schema
Get the JSON schema contract for content.platformSettings.<platformId>, including platform-specific publish options, validation-only gates, and supported per-platform content overrides.
Parameters (1)
- platformstringrequired
Platform ID to inspect
list_connectors
List all available connectors in the SendIt platform. Returns connectors organized by category: organic, paid_media, automation, workspace. Each connector includes its ID, name, status, auth strategy, and capabilities. Use this to discover what integrations are available before connecting.
Parameters (2)
- categorystring
Filter by connector category (optional)
- statusstring
Filter by availability status (optional)
get_connector_capabilities
Get detailed capabilities and operations for a specific connector. Returns supported operations, auth requirements, rate limits, and constraints.
Parameters (1)
- connectorIdstringrequired
Connector ID (e.g., 'linkedin', 'meta_ads', 'slack')
connect_connector
Initiate authentication flow for a connector. For OAuth2 connectors, returns an authorization URL. For API key connectors, stores the provided key. For webhook connectors, registers the webhook URL.
Parameters (4)
- connectorIdstringrequired
Connector ID to connect
- apiKeystring
API key (for api_key auth strategy connectors)
- botTokenstring
Bot token (for bot_token auth strategy connectors like Telegram, Discord)
- webhookUrlstring
Webhook URL (for webhook auth strategy connectors)
disconnect_connector
Disconnect and revoke credentials for a connector.
Parameters (2)
- connectorIdstringrequired
Connector ID to disconnect
- credentialIdstring
Specific credential ID to revoke (optional)
list_connected_connectors
List all currently connected connectors with their status and health. Includes both legacy platform connections and new connector connections.
Parameters (1)
- categorystring
Filter by category (optional)
get_connector_health
Get health status and SLO metrics for a connector.
Parameters (1)
- connectorIdstringrequired
Connector ID
execute_connector_operation
Execute a specific operation on a connected connector. Use get_connector_capabilities to discover available operations. Operations include read/write actions specific to each connector.
Parameters (4)
- connectorIdstringrequired
Connector ID
- operationstringrequired
Operation name (e.g., 'publish', 'read_posts', 'campaigns.list')
- dataobject
Operation-specific input data
- idempotencyKeystring
Idempotency key to prevent duplicate operations (optional)
list_ad_accounts
List all connected advertising accounts across platforms. Returns ad accounts from Meta Ads, Google Ads, LinkedIn Ads, TikTok Ads, etc.
Parameters (1)
- platformstring
Filter by ad platform (e.g., 'meta_ads', 'google_ads_search')
create_ad_campaign
Create a new advertising campaign on a connected ad platform. Supports campaign creation across Meta Ads, Google Ads, LinkedIn Ads, TikTok Ads, Pinterest Ads, and all other connected ad platforms. The AI Campaign Builder agent can help design optimal campaign structures.
Parameters (8)
- adAccountIdstringrequired
Ad account ID
- namestringrequired
Campaign name
- objectivestringrequired
Campaign objective
- budgetTypestringrequired
Budget type
- budgetAmountnumberrequired
Budget amount in account currency
- startDatestring
Campaign start date (ISO 8601)
- endDatestring
Campaign end date (optional)
- targetingobject
Targeting configuration (platform-specific)
list_ad_campaigns
List campaigns for an ad account with status and performance summary.
Parameters (2)
- adAccountIdstringrequired
Ad account ID
- statusstring
Filter by status
update_ad_campaign
Update campaign settings (name, budget, dates, status).
Parameters (5)
- campaignIdstringrequired
Campaign ID
- namestring
New campaign name
- statusstring
Change campaign status
- budgetAmountnumber
Updated budget amount
- endDatestring
Updated end date
create_ad_creative
Create an ad creative (image, video, carousel, or text ad). The Creative Asset agent can help generate ad visuals and copy.
Parameters (9)
- campaignIdstringrequired
Campaign ID
- adSetIdstring
Ad set ID (optional)
- creativeTypestringrequired
Creative type
- namestring
Creative name
- headlinestringrequired
Ad headline
- bodystringrequired
Ad body text
- callToActionstring
Call to action button text
- mediaUrlsarray
Media URLs for the creative
- landingUrlstring
Landing page URL
get_ad_performance
Get performance metrics for campaigns, ad sets, or creatives. Returns impressions, clicks, spend, conversions, CTR, CPC, CPM, ROAS, and custom metrics. Supports date range filtering and breakdown by day.
Parameters (6)
- entityTypestringrequired
Entity type to get metrics for
- entityIdstringrequired
Entity ID
- startDatestring
Start date (YYYY-MM-DD)
- endDatestring
End date (YYYY-MM-DD)
- metricsarray
Specific metrics to retrieve (optional, returns all by default)
- breakdownstring
Breakdown dimension
get_unified_ad_report
Get a cross-platform advertising performance report. Aggregates metrics across all connected ad platforms into a single view. Useful for comparing performance across Meta, Google, LinkedIn, TikTok, etc.
Parameters (3)
- startDatestringrequired
Start date
- endDatestringrequired
End date
- groupBystring
Group results by dimension
repurpose_url
Takes a URL (article, YouTube video, or podcast) and repurposes its content into platform-optimized posts. Supports: • Web articles — extracts text content • YouTube videos — extracts transcript/captions • Podcast RSS feeds — extracts episode descriptions and show notes Returns platform-specific formatted output (X threads, Instagram carousel slides, Medium articles, etc.) with a quality score (0-100) for each variant.
Parameters (4)
- urlstringrequired
Source URL to repurpose (article, YouTube video, or podcast RSS feed)
- target_platformsarrayrequired
Target platforms to generate content for (e.g., ['x', 'linkedin', 'instagram'])
- tonestring
Optional tone override (e.g., 'professional', 'casual', 'witty')
- brand_voice_idstring
Optional brand voice profile ID to apply
list_agents
List all available AI agents and their capabilities. SendIt includes 12 specialized agents: • Strategy Planner - Content strategy from audience/trend analysis • Content Ideation - Topic ideas from trends and calendar gaps • Multi-Format Composer - Platform-optimized content from a brief • Creative Asset - AI image/video generation orchestration • Variant Repurposer - Repurpose content for different platforms • Calendar Optimizer - Optimal posting time suggestions • Listening Analyst - Social mention and sentiment analysis • Inbox Reply - Contextual reply drafts with brand voice • Campaign Builder - Ad campaign structure recommendations • Budget Optimizer - Spend pacing and budget reallocation • Experimentation - A/B test design and analysis • Executive Insights - Executive summary reports
No parameters.
invoke_agent
Invoke a specific AI agent with given inputs. The agent will execute within policy constraints and return structured output. All agent runs are logged for audit and traceability.
Parameters (3)
- agentIdstringrequired
Agent to invoke
- inputobjectrequired
Agent-specific input parameters
- contextobject
Additional context (brand voice ID, date range, etc.)
get_agent_run
Get the details and output of a specific agent run.
Parameters (1)
- runIdstringrequired
Agent run ID
list_agent_runs
List recent agent runs with status and summary.
Parameters (3)
- agentIdstring
Filter by agent (optional)
- statusstring
Filter by status (optional)
- limitnumber
Maximum results to return (default 20)
get_agent_policies
Get the active policies/guardrails for an agent.
Parameters (1)
- agentIdstringrequired
Agent to get policies for
update_agent_policy
Create or update a policy/guardrail for an agent. Policy types: • brand_safety - Content must align with brand guidelines • platform_compliance - Must follow platform ad policies • approval_gate - Require human approval before execution • budget_limit - Cap spending or resource usage • content_filter - Filter certain topics or language
Parameters (4)
- agentIdstringrequired
Agent to set policy for
- policyTypestringrequired
Policy type
- rulesarrayrequired
Policy rules
- activeboolean
Whether policy is active
list_workflows
List all automation workflows with their status and trigger info.
Parameters (2)
- activeboolean
Filter by active/inactive (optional)
- triggerTypestring
Filter by trigger type (optional)
create_workflow
Create a new automation workflow. Workflows consist of a trigger and a sequence of steps. Trigger types: • manual - Run on demand • schedule - Cron-based schedule • event - Triggered by SendIt events (post published, mention detected, etc.) • webhook - Triggered by external webhook • connector_event - Triggered by connector-specific events Step types: • connector_action - Execute a connector operation • connector_operation - Alias of connector_action • agent_invoke - Run an AI agent • condition - Conditional control step (skip subsequent steps) • delay - Wait for a duration • http_request - Outbound HTTP request • transform - Transform data between steps • notify - Send notification (email, Slack, etc.)
Parameters (6)
- namestringrequired
Workflow name
- descriptionstring
Workflow description
- triggerTypestringrequired
Trigger type
- triggerConfigobjectrequired
Trigger configuration (cron expression, event type, etc.)
- stepsarrayrequired
Workflow steps in execution order
- activeboolean
Activate workflow immediately (default: false)
update_workflow
Update a workflow's configuration or status.
Parameters (4)
- workflowIdstringrequired
Workflow ID
- namestring
- activeboolean
- stepsarray
delete_workflow
Delete a workflow permanently.
Parameters (1)
- workflowIdstringrequired
Workflow ID
trigger_workflow
Manually trigger a workflow run.
Parameters (2)
- workflowIdstringrequired
Workflow ID to trigger
- inputDataobject
Input data to pass to the workflow run
list_workflow_runs
List recent runs for a workflow.
Parameters (3)
- workflowIdstringrequired
Workflow ID
- statusstring
- limitnumber
Max results (default 20)
get_workflow_run
Get detailed step-by-step execution log for a workflow run.
Parameters (1)
- runIdstringrequired
Workflow run ID
get_unified_analytics
Get cross-platform analytics combining organic and paid performance. Aggregates metrics across all connected platforms into a single view. Supports time-series breakdowns and platform comparison.
Parameters (6)
- startDatestringrequired
Start date (YYYY-MM-DD)
- endDatestringrequired
End date (YYYY-MM-DD)
- platformsarray
Filter to specific platforms (optional, all if omitted)
- includeOrganicboolean
Include organic metrics (default true)
- includePaidboolean
Include paid metrics (default true)
- breakdownstring
Breakdown dimension
get_attribution_report
Generate an attribution report showing how channels contribute to conversions. Models: • first_touch - All credit to first interaction • last_touch - All credit to last interaction • linear - Equal credit across all touchpoints • time_decay - More credit to recent touchpoints • position_based - 40% first, 40% last, 20% middle • data_driven - ML-based attribution
Parameters (4)
- modelstringrequired
Attribution model
- startDatestringrequired
- endDatestringrequired
- conversionTypestring
Filter by conversion type (optional)
get_anomaly_alerts
Get recent anomaly alerts detected across metrics. Includes sudden drops/spikes in engagement, unusual spend patterns, and content performance outliers.
Parameters (3)
- severitystring
Filter by severity (optional)
- dismissedboolean
Include dismissed alerts
- limitnumber
Max results (default 20)
get_benchmark_comparison
Compare your performance against industry benchmarks. Returns how your engagement rates, growth, and content performance compare to similar accounts in your industry.
Parameters (3)
- platformstringrequired
Platform to benchmark
- metricstringrequired
Metric to compare
- industrystring
Industry vertical for comparison
get_post_analytics
Fetch drilldown analytics for one published post, including per-snapshot metrics and campaign context.
Parameters (4)
- postIdstring
Published post ID to inspect.
- publishedPostIdstring
Compatibility alias for postId.
- idstring
Compatibility alias for postId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_analytics_reports
List saved analytics report definitions for the current personal or team scope.
Parameters (1)
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
run_analytics_report
Execute one saved analytics report immediately and return the generated run plus aggregated analytics data.
Parameters (3)
- reportIdstring
Saved analytics report ID.
- idstring
Compatibility alias for reportId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
create_scheduled_report
Create a recurring analytics report that's generated and delivered automatically.
Parameters (6)
- namestringrequired
Report name
- reportTypestringrequired
Report type
- schedulestringrequired
Report frequency
- platformsarray
Platforms to include
- deliveryMethodstring
How to deliver the report
- deliveryTargetstring
Email address, Slack channel, or webhook URL
list_conversations
List unified inbox conversations across all connected channels. Aggregates comments, mentions, DMs, and messages from all organic and workspace connectors into a single inbox view.
Parameters (6)
- statusstring
Filter by conversation status
- sentimentstring
Filter by sentiment
- prioritystring
Filter by priority
- connectorIdstring
Filter by connector/platform
- assignedTostring
Filter by assignee
- limitnumber
Max results (default 20)
get_conversation
Get full conversation thread with all messages.
Parameters (1)
- conversationIdstringrequired
Conversation ID
reply_to_conversation
Send a reply in a conversation. The reply is sent through the original channel (e.g., Instagram comment, X reply, Facebook comment, etc.). Replies require conversation reply routing metadata (credential + operation). Provide "routing" once and it will be stored on the conversation for future replies. Use the Inbox Reply agent to get AI-drafted replies with brand voice.
Parameters (4)
- conversationIdstringrequired
Conversation ID
- contentstringrequired
Reply text
- mediaUrlsarray
Media to attach (optional)
- routingobject
Optional: set conversation reply routing (persisted on conversations.metadata.replyRouting). Use this when the conversation doesn't yet have reply routing configured.
update_conversation
Update conversation status, priority, assignment, or tags.
Parameters (6)
- conversationIdstringrequired
Conversation ID
- statusstring
- prioritystring
- assignedTostring
Assign to team member ID
- tagsarray
Set tags
- sentimentstring
get_inbox_summary
Get a summary of the unified inbox: total conversations, unread count, sentiment breakdown, and response time metrics.
Parameters (1)
- timeRangestring
Time range for summary metrics
escalate_to_support
Escalate a social conversation to a connected support platform (Zendesk, Intercom, etc.). Creates a support ticket from the conversation context.
Parameters (4)
- conversationIdstringrequired
Conversation to escalate
- targetConnectorstringrequired
Support platform to escalate to
- prioritystring
- notestring
Internal note for the support team
autopilot_set_goal
Set a social media goal for the AI autopilot to work toward. The autopilot will use AI agents to plan content, generate posts, and schedule them. Example goals: 'Grow LinkedIn followers by 20%', 'Post 5x/week on Instagram about AI'.
Parameters (4)
- goalTextstringrequired
The social media goal to achieve
- platformsarrayrequired
Target platforms (e.g. ['twitter', 'linkedin', 'instagram'])
- durationWeeksnumber
How many weeks to run the autopilot (1-52, default 4)
- targetMetricsobject
Target metrics (e.g. { followers: 1000, engagement_rate: 0.05 })
autopilot_generate_plan
Generate a weekly content plan for an autopilot goal. Chains 5 AI agents: Strategy Planner -> Content Ideation -> Calendar Optimizer -> Multi-Format Composer -> Variant Repurposer. Returns a plan with individual post items for review.
Parameters (2)
- goalIdstringrequired
The autopilot goal ID to generate a plan for
- weekNumbernumber
Specific week number to generate (optional, auto-increments)
autopilot_approve_plan
Approve all pending items in an autopilot plan, or approve/reject individual items. After approval, use autopilot_execute_plan to schedule the approved posts.
Parameters (4)
- planIdstring
Plan ID to approve (approves all pending items)
- itemIdstring
Individual item ID to approve or reject
- actionstring
Action for individual item (default: approve)
- feedbackstring
Feedback when rejecting an item
autopilot_execute_plan
Schedule all approved posts in an autopilot plan. Posts are spaced out over time and scheduled via the standard publishing pipeline.
Parameters (1)
- planIdstringrequired
Plan ID to execute
autopilot_get_progress
Get progress metrics for an autopilot goal — weeks planned, posts approved, scheduled, published.
Parameters (1)
- goalIdstringrequired
Goal ID to check progress for
autopilot_list_goals
List all autopilot goals for the current user.
No parameters.
list_projects
List imported product/codebase projects for social strategy and content generation.
Parameters (4)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- statusstring
- searchstring
- limitnumber
create_project
Create a Projects workspace for a product, app, or codebase.
Parameters (6)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- namestringrequired
- descriptionstring
- categorystring
- tagsarray
- sourcesarray
import_project_source
Import GitHub, app-store, website, file, or media source context into a project.
Parameters (3)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
- sourcesarrayrequired
analyze_project
Analyze a project for audience, positioning, differentiators, content pillars, and risks.
Parameters (2)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
get_project_analysis
Fetch stored project analysis, strategy, recent generations, and activity.
Parameters (2)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
generate_project_strategy
Generate project-local brand voice, positioning, audience, and social content strategy.
Parameters (2)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
request_project_content
Generate UGC, slideshow, remix, caption, or calendar content from project intelligence.
Parameters (9)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
- contentTypestring
- platformsarray
- promptstring
- goalstring
- countnumber
- saveToLibraryboolean
- consentConfirmedboolean
Required when using uploaded creator or likeness-like media.
save_project_content_to_library
Generate project content and save the outputs into the reusable content library.
Parameters (6)
- team_idstring
Optional team ID or slug. Ignored when using a team-scoped API key.
- projectIdstringrequired
- contentTypestring
- platformsarray
- promptstring
- countnumber
schedule_content_advanced
Schedule content with explicit target accounts, queue placement, recurrence, platform overrides, media library attachments, and score gating.
Parameters (13)
- contentobjectrequired
- platformOverridesobject
Optional per-platform overrides keyed by platform ID. Use this for platform-specific text, title, description, or publish settings.
- targetAccountsarrayrequired
Connected account IDs to schedule to. These determine the target platforms.
- mediaAttachmentsarray
Optional media library assets to link to the scheduled post.
- scheduledAtstring
ISO 8601 time for exact scheduling. Required unless scheduleMode is 'queue'.
- scheduleModestring
Scheduling strategy. Use 'queue' to place the post into the next available queue slot.
- timezonestring
Optional IANA timezone for queue resolution and recurrence.
- recurrenceobject
Optional structured recurrence definition.
- recurrenceRulestring
Optional RRULE string for advanced recurring schedules.
- recurrenceEndDatestring
Optional ISO 8601 date-time to stop the recurring series.
- scoreGatenumber
Optional minimum content score threshold. If unmet, the tool can return a bypass token instead of scheduling.
- bypassTokenstring
Optional bypass token returned from a previous score gate warning.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_scheduled_post
Fetch one scheduled post with approval, recurrence, retry, and published-link metadata.
Parameters (4)
- postIdstring
Scheduled post ID.
- scheduleIdstring
Compatibility alias for postId.
- idstring
Compatibility alias for postId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
edit_scheduled_post
Edit a pending scheduled post. Supports text, media, platform, timing, approval-scope, and publish-now updates.
Parameters (15)
- postIdstring
Scheduled post ID.
- scheduleIdstring
Compatibility alias for postId.
- idstring
Compatibility alias for postId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
- textstring
Updated post text.
- mediaUrlstring
Replacement public HTTPS media URL, or an empty value to remove media.
- mediaUrlsarray
Replacement public HTTPS media URLs.
- platformsarray
Optional replacement platform list.
- scheduledTimestring
Updated ISO 8601 scheduled publish time.
- scheduledAtstring
Compatibility alias for scheduledTime.
- timezonestring
Optional IANA timezone for the updated schedule.
- applyScopestring
Whether to apply the edit to only this post or this and future occurrences.
- firstCommentstring
Optional replacement Instagram first comment.
- pinterestBoardIdstring
Optional replacement Pinterest board ID.
- publishNowboolean
If true, publish immediately after applying the edit.
retry_scheduled_post
Retry a failed scheduled post, optionally editing the content, narrowing to failed platforms, rescheduling, or publishing immediately.
Parameters (12)
- postIdstring
Scheduled post ID.
- scheduleIdstring
Compatibility alias for postId.
- idstring
Compatibility alias for postId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
- scheduledAtstring
New ISO 8601 retry time. Required unless publishNow is true.
- textstring
Replacement post text for the retry.
- mediaUrlstring
Replacement public HTTPS media URL for the retry.
- mediaUrlsarray
Replacement public HTTPS media URLs for the retry.
- platformsarray
Optional subset of failed platforms to retry.
- firstCommentstring
Optional replacement Instagram first comment.
- pinterestBoardIdstring
Optional replacement Pinterest board ID.
- publishNowboolean
Publish the retry immediately instead of scheduling it.
duplicate_scheduled_post
Create a new scheduled post by duplicating an existing scheduled post. If no time is supplied, SendIt shifts it forward automatically.
Parameters (5)
- postIdstring
Scheduled post ID.
- scheduleIdstring
Compatibility alias for postId.
- idstring
Compatibility alias for postId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
- scheduledAtstring
Optional ISO 8601 time for the duplicated post.
suggest_next_schedule_time
Suggest the next recommended publish time using best-times insights or configured queue slots without creating a post.
Parameters (7)
- platformstring
Single platform to optimize for.
- platformsarray
Optional platform set to optimize across.
- modestring
Use 'best_time' for analytics-based suggestions or 'queue' for queue-slot suggestions.
- mediaTypestring
Optional content media type hint for best-time recommendations.
- afterstring
Optional lower bound. Suggestions should be strictly after this time.
- timezonestring
Optional IANA timezone for the returned recommendation.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
suggest_queue_slots
Suggest reusable queue slots derived from best-time insights for one or more platforms.
Parameters (4)
- platformsarray
Optional platform list. If omitted, suggestions may be generated for all supported platforms.
- slotsPerPlatformnumber
How many suggested slots to return per platform.
- timezonestring
Optional IANA timezone for the suggested local queue times.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
schedule_multilang_content
Schedule the same post in multiple languages, linking all variants into one translation group.
Parameters (8)
- versionsarrayrequired
Language-specific post variants. Maximum 11 versions per request.
- mediaUrlstring
Optional shared public HTTPS media URL.
- mediaUrlsarray
Optional shared public HTTPS media URLs.
- mediaTypestring
Optional shared media type hint.
- titlestring
Optional shared title for supported platforms.
- scheduledAtstringrequired
Future ISO 8601 publish time for every language version.
- timezonestring
Optional IANA timezone stored with the scheduled posts.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_calendar_events
List scheduled and published calendar events with optional date-range, status, platform, and pagination filters.
Parameters (8)
- startstring
Optional range start. ISO 8601 date or date-time.
- endstring
Optional range end. ISO 8601 date or date-time.
- upcomingboolean
If true, return only upcoming events.
- statusstring
Optional event status filter.
- platformsarray
Optional platform filter.
- cursorstring
Opaque pagination cursor from a previous response.
- limitnumber
Maximum number of results to return.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
update_calendar_event
Update one calendar event by rescheduling it, changing status, reassigning it, or storing metadata.
Parameters (8)
- eventIdstring
Calendar event ID or backing scheduled post ID.
- idstring
Compatibility alias for eventId.
- postIdstring
Compatibility alias when the calendar event maps directly to a scheduled post.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
- scheduledAtstring
Updated ISO 8601 schedule time for the event.
- statusstring
Updated event status.
- assigneeIdstring
Optional assignee user ID.
- metadataobject
Optional event metadata patch.
bulk_update_calendar_events
Apply one bulk action to many calendar events at once, including shifts, explicit reschedules, queue moves, cancellations, or assignments.
Parameters (10)
- idsarrayrequired
Calendar event IDs or scheduled post IDs to update.
- actionstringrequired
Bulk action to apply.
- deltaMinutesnumber
Compatibility shift amount in minutes.
- shiftobject
- assigneeIdstring
Required for the 'assign' action.
- scheduledAtstring
Replacement ISO 8601 time for the 'set_time' action.
- scheduledTimestring
Compatibility alias for scheduledAt.
- timezonestring
Optional IANA timezone for queue-based moves.
- applyScopestring
Whether to affect only the selected IDs or their recurrence groups.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
list_recurring_series
List recurring scheduled-post series and their recurrence metadata.
Parameters (3)
- cursorstring
Opaque pagination cursor from a previous response.
- limitnumber
Maximum number of results to return.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
update_recurring_series
Update the recurrence rule or end date for future occurrences in a recurring series.
Parameters (5)
- seriesIdstring
Recurring series parent scheduled post ID.
- idstring
Compatibility alias for seriesId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
- recurrenceRulestring
Replacement RRULE string.
- recurrenceEndDatestring
Replacement ISO 8601 end date for the series.
cancel_recurring_series
Cancel a recurring series and stop future pending occurrences from publishing.
Parameters (3)
- seriesIdstring
Recurring series parent scheduled post ID.
- idstring
Compatibility alias for seriesId.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_calendar_gaps
Detect open days in the publishing calendar and return gap metadata for planning.
Parameters (4)
- startstringrequired
Range start date in YYYY-MM-DD format.
- endstringrequired
Range end date in YYYY-MM-DD format.
- platformsarray
Optional platform subset to inspect.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_calendar_recommendations
Return top recommended recurring posting slots from historical performance data.
Parameters (3)
- timezonestring
Optional IANA timezone for the recommendation labels.
- platformsarray
Optional platform subset to optimize for.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
get_approval_comments
List approval comments for one scheduled post in team approval scope.
Parameters (3)
- postIdstring
Scheduled post ID to load comments for.
- post_idstring
Compatibility alias for postId.
- team_idstringrequired
Team ID is required because approval comments are only available in team scope.
list_media_assets
List media library assets with filtering by collection, type, tags, search, and pagination.
Parameters (8)
- collectionstring
Optional collection name filter.
- mimeTypestring
Optional exact MIME type filter such as image/png or video/mp4.
- kindstring
Optional broad media kind filter.
- tagsarray
Optional tag filter. Assets matching any supplied tag may be returned.
- searchstring
Optional filename search query.
- cursorstring
Opaque pagination cursor from a previous response.
- limitnumber
Maximum number of results to return.
- team_idstring
Team ID to operate in team scope. Get available teams with list_teams. If omitted, uses personal scope.
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"sendit": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://sendit.infiniteappsai.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.