Skip to main content
Glama

Timeline MCP Server

npm version License: MIT

Model Context Protocol (MCP) server for managing scheduled social media posts and content automation.

Timeline MCP enables AI assistants like Claude to manage your content calendar through natural language. Schedule posts across multiple platforms (X/Twitter, Reddit, LinkedIn, Instagram, TikTok, YouTube), organize campaigns into tracks, and automate your content workflow.

Quick Start

Add to your MCP settings (e.g., ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "timeline": {
      "command": "npx",
      "args": ["-y", "timeline-mcp"],
      "env": {
        "POSTY_WORKSPACE": "/path/to/your/workspace"
      }
    }
  }
}

Environment Variables:

  • POSTY_WORKSPACE (required): Path to your Posty workspace directory containing the SQLite database

Related MCP server: @posteverywhere/mcp

What is MCP?

Model Context Protocol is an open protocol that enables AI assistants to securely interact with local and remote tools. This server implements the MCP specification to provide timeline management capabilities.

Development

For local development:

# Install dependencies
npm install

# Build the project
npm run build

# Run locally
npm start

Implementation

Built with FastMCP framework for cleaner code and better TypeScript support. Uses SQLite database storage via Drizzle ORM for reliable local data persistence.

Features

Track Management

  • 📋 List Tracks - View all content tracks

  • Add Track - Create new tracks for organizing campaigns

  • 🗑️ Remove Track - Delete tracks and associated events

Scheduled Events

  • 📅 Add Scheduled Event - Schedule posts with prompts, timing, and platform

  • 📊 List Events - Filter by track, status, platform, or date range

  • ✏️ Update Event - Modify scheduled events before publishing

  • Remove Event - Delete scheduled events

Supported Platforms

  • X (Twitter)

  • Reddit (with subreddit targeting)

  • LinkedIn

  • Instagram

  • TikTok

  • YouTube

Usage Example

Ask your AI assistant:

"Schedule a product launch campaign for next week. Create 5 teaser posts on X leading up to the launch, with one post per day at 10 AM."

The AI will use Timeline MCP to:

  1. Create or reuse a track for the campaign

  2. Generate engaging prompts for each post

  3. Schedule them at the specified times

  4. Store everything in your local database

Media Storage

Generated images and content are saved to:

{workspace}/tracks/{track_name}/{event_name}/

Each event folder contains an info.json with metadata about the event.

Examples

See examples.md for detailed usage examples including:

  • Product launch campaigns

  • Content series scheduling

  • Event coverage

  • Multi-platform posts

Requirements

  • Node.js 18+

  • A Posty workspace with SQLite database

  • MCP-compatible AI assistant (Claude Desktop, etc.)

Available Tools

7 tools
timeline_add_scheduled_eventA

Add a scheduled event to a track. IMPORTANT: 1) Use the terminal MCP tool to get the current date/time (execute_command("date")) before scheduling events to ensure correct dates. 2) ALWAYS use timeline_list_tracks first to check existing tracks - if a track with a similar name or purpose already exists, use that instead of creating a new one. If unsure whether an existing track matches your needs, ask the user for clarification before proceeding.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackNameYes
eventNameYes
promptYes
scheduledTimeYes
platformNox
agentNoclaude-sonnet-4-5-20250929
approvalViaNomanual
mcpToolsNo
metadataNoPlatform-specific metadata (e.g., { targetSubreddit: "subredditname" } for Reddit posts)

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden. It reveals important behavioral constraints (date/time verification requirement, track existence checking prerequisite) and mentions user clarification fallback. However, it doesn't disclose what happens on success/failure, whether events can be modified/removed later, or any rate limits/authentication needs. For a 9-parameter mutation tool with no annotations, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately sized and well-structured with numbered IMPORTANT points. It's front-loaded with the core purpose, then provides critical usage guidelines. Every sentence serves a clear purpose, though the second sentence could be slightly more concise by combining the two verification steps.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given high complexity (9 parameters, nested objects, no output schema, no annotations), the description provides strong usage guidance but lacks parameter explanations and behavioral details. The guidance for track verification and date/time checking is valuable, but without parameter semantics or output information, an agent would struggle to construct proper calls despite knowing when to use the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 11% (just the metadata parameter has a description), so the description must compensate. However, the description provides NO information about any of the 9 parameters - it doesn't explain what trackName, eventName, prompt, scheduledTime, platform, agent, approvalVia, mcpTools, or metadata represent or how they should be used. This leaves most parameters semantically undefined.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Add a scheduled event to a track') with specific resources (event, track). It distinguishes from siblings by focusing on adding events rather than tracks or listing/removing operations. However, it doesn't explicitly differentiate from 'timeline_update_scheduled_event' which could be confusing for similar update scenarios.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage guidance with two numbered IMPORTANT instructions: 1) use terminal tool for date/time verification, and 2) ALWAYS use timeline_list_tracks first to check existing tracks. It specifies when to use existing tracks vs. create new ones, and includes fallback guidance ('ask the user for clarification'). This is comprehensive guidance for proper tool invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_add_trackA

Create a new track for organizing timeline events. Check existing tracks with timeline_list_tracks first to avoid duplicates.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYes
typeNoplanned
orderNoOptional order position. If not provided, will be added at the end.

TDQS

A3.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While it mentions checking for duplicates, it doesn't disclose other important behavioral aspects like what happens on duplicate creation (error? override?), authentication requirements, rate limits, or what the tool returns. For a creation tool with zero annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is perfectly concise with two sentences that each earn their place. The first sentence states the purpose, and the second provides essential usage guidance. No wasted words, well-structured, and front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a creation tool with no annotations and no output schema, the description provides good purpose and usage guidance but lacks behavioral context about what happens on success/failure, return values, or error conditions. It's adequate as a minimum viable description but has clear gaps given the tool's complexity and lack of structured metadata.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 33% (only the 'order' parameter has a description), so the description needs to compensate but doesn't mention any parameters. The description adds no parameter semantics beyond what the schema provides, but the schema itself has reasonable coverage through enum values and constraints. Baseline 3 is appropriate given the schema does most of the work.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Create a new track') and resource ('for organizing timeline events'), distinguishing it from sibling tools like timeline_list_tracks (which lists tracks) and timeline_remove_track (which removes tracks). It provides a complete purpose statement with both verb and target.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly provides usage guidance by stating 'Check existing tracks with timeline_list_tracks first to avoid duplicates.' This names a specific alternative tool (timeline_list_tracks) and gives a clear when-to-use recommendation (check first to avoid duplicates), which is excellent guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_list_scheduled_eventsA

List scheduled events with optional filtering by track, status, platform, and date range.

STATUS FILTERING:

  • 'all': Returns all events regardless of status

  • 'pending': Returns events that haven't been generated yet (contentGenerated = false)

  • 'generated': Returns events that have been generated but not posted yet (contentGenerated = true, posted = false)

  • 'posted': Returns events that have been posted (posted = true)

DATE FILTERING:

  • startDate/endDate use DATE ONLY comparison (time is ignored)

  • Format: YYYY-MM-DD or ISO 8601 datetime string

  • Example: startDate="2025-10-14" matches ALL events scheduled on Oct 14, regardless of time

  • To get events for a single day, use the same date for both startDate and endDate

EXAMPLES:

  • Get all posted events from today: { "startDate": "2025-10-14", "endDate": "2025-10-14", "status": "posted" }

  • Get all Reddit events this week: { "platform": "reddit", "startDate": "2025-10-14", "endDate": "2025-10-20" }

  • Get pending events in a specific track: { "trackId": "track-uuid", "status": "pending" }

ParametersJSON Schema
NameRequiredDescriptionDefault
trackIdNoFilter by track ID
statusNoFilter by event statusall
platformNoFilter by platform (x, reddit, linkedin, instagram, tiktok, youtube)
startDateNoStart date for filtering (YYYY-MM-DD). Date-only comparison - time is ignored.
endDateNoEnd date for filtering (YYYY-MM-DD). Date-only comparison - time is ignored.
limitNoMaximum number of events to return
offsetNoOffset for pagination

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden and does well by explaining key behavioral aspects: date filtering uses DATE ONLY comparison with time ignored, format requirements (YYYY-MM-DD or ISO 8601), and how to get single-day events. It also clarifies status filtering semantics with contentGenerated/posted conditions. It doesn't mention pagination behavior or rate limits, preventing a perfect score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Perfectly structured with clear sections (STATUS FILTERING, DATE FILTERING, EXAMPLES) and zero wasted sentences. Every sentence provides essential information. The description is appropriately sized for a complex filtering tool with 7 parameters and no annotations.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a listing tool with 7 parameters, 100% schema coverage, but no annotations or output schema, the description provides excellent context about filtering behavior and usage. The examples are particularly helpful. It doesn't describe the return format or structure, which would be needed for a perfect score given no output schema exists.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value by explaining status filtering semantics (mapping status values to contentGenerated/posted states) and date filtering behavior (date-only comparison, single-day technique). However, it doesn't add significant meaning beyond what the schema already documents for most parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'List' and resource 'scheduled events' with specific filtering capabilities. It distinguishes this tool from siblings like timeline_add_scheduled_event (create) and timeline_update_scheduled_event (modify) by focusing on retrieval only. The opening sentence establishes a precise purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for when to use this tool through detailed filtering options and examples. It implicitly positions this as the primary listing tool for scheduled events. However, it doesn't explicitly mention when NOT to use it or name specific alternatives among siblings, keeping it at a 4 rather than a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_list_tracksC

List all tracks

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'List all tracks' implies a read-only operation, but it doesn't specify any behavioral traits such as pagination behavior (implied by limit/offset parameters), rate limits, authentication needs, or what 'all' entails (e.g., all accessible tracks). This leaves significant gaps in understanding how the tool behaves beyond basic listing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description 'List all tracks' is extremely concise with only three words, front-loading the core action and resource without any wasted words. It efficiently communicates the basic purpose in a minimal format, making it easy to scan and understand at a glance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (2 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain the parameters, return values, or behavioral context needed for effective use. While conciseness is high, the lack of details on how to use the tool with its parameters and what to expect in response makes it inadequate for the tool's context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 2 parameters (limit and offset) with 0% description coverage, meaning no parameter details are provided in the schema. The description 'List all tracks' doesn't mention or explain these parameters at all, failing to compensate for the schema's lack of documentation. However, since the tool has parameters, the baseline is adjusted from 4 to 3, as the description adds no semantic value beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'List all tracks' clearly states the verb ('List') and resource ('tracks'), making the basic purpose understandable. However, it lacks specificity about what 'tracks' are in this context (e.g., timeline tracks, audio tracks) and doesn't distinguish this tool from its sibling 'timeline_list_scheduled_events', which suggests a similar listing function for a different resource. This makes it vague in differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, context for usage, or comparisons to sibling tools like 'timeline_list_scheduled_events' for listing scheduled events instead of tracks. Without such information, users must infer usage from the tool name alone, which is insufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_remove_scheduled_eventC

Remove a scheduled event

ParametersJSON Schema
NameRequiredDescriptionDefault
eventIdYes

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Remove' implies a destructive mutation, but the description doesn't specify whether this action is reversible, requires specific permissions, affects related data, or has side effects (e.g., notifications). It lacks details on error handling, rate limits, or response format, leaving significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with a single sentence ('Remove a scheduled event'), which is front-loaded and wastes no words. While it could benefit from more detail, it efficiently communicates the core action without redundancy or fluff, earning a high score for brevity and clarity in structure.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (a destructive mutation with no annotations, 0% schema coverage, and no output schema), the description is incomplete. It doesn't explain what happens upon removal, potential errors, or return values, leaving critical aspects undocumented. For a tool that modifies data, this lack of context makes it inadequate for safe and effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no parameter semantics beyond what the input schema provides. With 0% schema description coverage, the single parameter 'eventId' is undocumented in both the schema and description. However, since there's only one parameter and its purpose (identifying the event to remove) is somewhat inferable from context, this meets the baseline for minimal viability without compensating for the coverage gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the action ('Remove') and resource ('a scheduled event'), which provides a basic understanding of what the tool does. However, it doesn't differentiate from sibling tools like 'timeline_remove_track' or specify what constitutes a 'scheduled event' versus other event types. The purpose is clear but lacks specificity about scope or distinction from alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing event ID), exclusions, or comparisons with siblings like 'timeline_update_scheduled_event' or 'timeline_list_scheduled_events'. Without such context, users must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_remove_trackA

Remove a track and all its associated events. WARNING: This will delete all events in the track.

ParametersJSON Schema
NameRequiredDescriptionDefault
trackIdYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively communicates that this is a destructive operation ('will delete all events in the track'), which is crucial for a mutation tool. However, it lacks details on permissions, reversibility, or response format, leaving some behavioral aspects unspecified.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core action and includes a critical WARNING in two concise sentences. Every sentence earns its place by clarifying the scope and risk of the operation, with no redundant or unnecessary information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's destructive nature, no annotations, and no output schema, the description is moderately complete. It covers the main action and warning but lacks details on permissions, error handling, or return values. For a mutation tool with zero annotation coverage, more context would be beneficial to fully inform usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 1 parameter with 0% description coverage, so the description must compensate. It implies the parameter is a track identifier but does not explicitly define 'trackId' or its format. Since there is only one parameter, the baseline is high, but the description adds minimal semantic context beyond the schema's structural definition.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the specific action ('Remove') and resource ('a track and all its associated events'), distinguishing it from siblings like timeline_remove_scheduled_event (which removes individual events) and timeline_list_tracks (which lists tracks). It explicitly mentions the scope of deletion ('all events in the track'), making the purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage by highlighting the destructive nature with a WARNING, suggesting it should be used cautiously for deletion. However, it does not explicitly state when to use this tool versus alternatives (e.g., timeline_remove_scheduled_event for removing single events) or provide prerequisites. The guidance is implicit rather than explicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

timeline_update_scheduled_eventC

Update an existing scheduled event

ParametersJSON Schema
NameRequiredDescriptionDefault
eventIdYes
updatesYes

TDQS

C2.8/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states this is an update operation, implying mutation, but doesn't cover critical aspects like required permissions, whether changes are reversible, rate limits, or what happens to unspecified fields. This leaves significant gaps for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, direct sentence with zero wasted words. It's appropriately sized for a basic tool definition and front-loaded with the core action, making it highly efficient in communication.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with 2 parameters (including a complex nested object), 0% schema description coverage, no annotations, and no output schema, the description is inadequate. It doesn't explain parameters, behavioral implications, or return values, leaving the agent poorly equipped to use this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the schema provides no parameter descriptions. The tool description adds no information about the two parameters (eventId and updates) or their nested properties, failing to compensate for the schema's lack of documentation. This leaves parameters entirely unexplained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Update') and resource ('an existing scheduled event'), making the purpose immediately understandable. It distinguishes from siblings like 'timeline_add_scheduled_event' by specifying it's for updates rather than creation, though it doesn't explicitly mention all sibling alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives like 'timeline_remove_scheduled_event' or 'timeline_list_scheduled_events'. The description doesn't mention prerequisites (e.g., needing an existing event ID) or contextual constraints, leaving the agent with minimal usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: timeline_add_scheduled_event and timeline_update_scheduled_event handle event creation/modification, timeline_remove_scheduled_event handles deletion, timeline_list_scheduled_events handles listing with filtering, timeline_add_track and timeline_remove_track manage tracks, and timeline_list_tracks lists tracks. There is no overlap or ambiguity between tools.

Naming Consistency5/5

All tools follow a consistent 'timeline_verb_noun' pattern with snake_case, such as timeline_add_scheduled_event, timeline_list_tracks, and timeline_remove_track. This predictable naming convention makes it easy to understand each tool's function at a glance.

Tool Count5/5

With 7 tools, this server is well-scoped for managing timeline tracks and scheduled events. It provides a complete set of operations (add, list, update, remove for both tracks and events) without being overly complex or too sparse, fitting typical use cases effectively.

Completeness5/5

The toolset offers full CRUD coverage for both tracks (add, list, remove) and scheduled events (add, list, update, remove), including advanced filtering for events. There are no obvious gaps; agents can manage the entire lifecycle of timeline data without dead ends.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Schedule and manage social media posts across 10 platforms (Instagram, Facebook, TikTok, X, LinkedIn, YouTube, Threads, Pinterest, Bluesky, Telegram) from any MCP-compatible AI assistant. Supports batch posting, media uploads, analytics, and platform-specific features like Reels, Shorts, and carousels.
    11
    421
    5
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI assistants to schedule and publish social media posts to platforms like Instagram, TikTok, YouTube, LinkedIn, Facebook, X, Threads, and Pinterest using natural language.
    33
    278
    3
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Social media scheduling and publishing for AI agents. 17 validation-first tools to post to X, LinkedIn, Instagram, TikTok, YouTube, Reddit, Discord, Telegram, and more through one connected workspace.
    314
    82
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Schedule and manage social media posts across 13 platforms (Bluesky, Threads, Instagram, LinkedIn, Mastodon, YouTube, Facebook, Pinterest, Telegram, Nostr, X/Twitter, Discord, Tumblr and more). OAuth 2.0 + PKCE, 10 tools, draft-first workflow for AI agents.
    10
    13
    AGPL 3.0

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/derekalia/timeline-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server