timeline-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@timeline-mcpfetch the conversation for issue 5461"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Panteon Timeline MCP Server ๐
An MCP (Model Context Protocol) server built with FastMCP that enables AI assistants (Antigravity, Claude Desktop, Cursor, etc.) to fetch real-time task data and conversation history directly from Panteon Timeline (https://timeline.panteon.no).
โจ Features
Extract Issue ID: Automatically parses URL formats like
https://timeline.panteon.no/tasks#/list/15033/edit/5461or accepts direct issue IDs (5461).Two-Step API Resolution: Mirrors the browser extension logic by resolving the external issue ID (
5461) to Panteon's internaltask_idvia API 1, and then fetching the complete conversation timeline via API 2.AI-Optimized Formatting: Provides structured XML/Markdown context (
<task_title>,<task_description>,<conversation_history>) ready for AI analysis, summarization, and reply drafting.Flexible Authentication: Supports JWT Bearer tokens or Cookie headers via
.envfile configuration or per-tool-call parameters.
Related MCP server: Rytnow MCP Server
๐ ๏ธ Installation & Setup
1. Install Dependencies
Ensure you have Python 3.10+ installed, then create or reuse the project virtualenv and install dependencies into it:
cd timeline-mcp
python3 -m venv .venv
.venv/bin/python -m pip install -r requirements.txt2. Configure Authentication
To fetch protected data from timeline.panteon.no, the MCP server needs an authentication token from your logged-in browser session.
Copy
.env.exampleto.env:cp .env.example .envOpen Google Chrome and log in to
https://timeline.panteon.no.Open Chrome DevTools (
F12orCtrl+Shift+I) -> navigate to the Network tab.Refresh the timeline task page or perform any action.
Click on any request starting with
api/(e.g.,taskbyissue/...ortimeline).Under Request Headers, copy the value of
Authorization(without theBearerprefix) or the rawCookieheader string.Paste it into your
.envfile:PANTEON_BEARER_TOKEN=eyJ... # OR PANTEON_COOKIE=...
๐ค Configuring MCP Clients
For Claude Desktop / Antigravity / Cursor
Add the following configuration to your MCP server configuration file (e.g., claude_desktop_config.json):
{
"mcpServers": {
"timeline-mcp": {
"command": "/home/harpalsinh.solanki@hs.local/projects/panteon/timeline-mcp/.venv/bin/python",
"args": [
"/home/harpalsinh.solanki@hs.local/projects/panteon/timeline-mcp/server.py"
],
"env": {
"PANTEON_BEARER_TOKEN": "your_jwt_token_here"
}
}
}
}For Codex
Codex reads MCP servers from config.toml. Add this to ~/.codex/config.toml for a global setup, or to .codex/config.toml inside this repository for a project-scoped setup:
[mcp_servers.timeline_mcp]
command = "/home/harpalsinh.solanki@hs.local/projects/panteon/timeline-mcp/.venv/bin/python"
args = ["/home/harpalsinh.solanki@hs.local/projects/panteon/timeline-mcp/server.py"]
cwd = "/home/harpalsinh.solanki@hs.local/projects/panteon/timeline-mcp"
startup_timeout_sec = 20
tool_timeout_sec = 120With cwd set to this repository, python-dotenv loads .env automatically. If you prefer to pass credentials from the shell instead, add:
env_vars = ["PANTEON_BEARER_TOKEN", "PANTEON_COOKIE", "PANTEON_TIMELINE_DIR"]After saving the config, restart Codex and run /mcp in the Codex TUI to confirm timeline_mcp is active.
๐งฐ Available Tools
get_task_conversation
Fetches a task in full โ its description body and the entire comment conversation โ including every image embedded anywhere, and writes it to a markdown file.
Arguments:
issue_identifier(str) โ e.g."https://timeline.panteon.no/tasks#/list/15033/edit/5461"or"5461". Must be a bare numeric ID or a URL containing/edit/<id>.bearer_token/cookie(str, optional) โ override the.envcredentials per call.inline(bool, defaultfalse) โ whentrue, the full task markdown is appended to the return value in addition to being saved. Use this for clients that can't read the local filesystem path.
Side effect: writes
timeline/<issue_id>/task.md(title, metadata, description, comments). The saved file is also exposed as an MCP resource attimeline://<issue_id>/task.md, so clients can read the full content through MCP after a fetch.Empty tasks: when both description and comments are empty, the tool asks for optional user-provided context if the MCP client supports elicitation. Accepted input is saved under
## User-Provided Context; unsupported clients keep the normal placeholder output.Returns a short human-readable summary string with the issue id, title, status, and saved file path โ for example:
Issue #4117 โ Label print Status: open Saved to: /abs/path/timeline/4117/task.mdThe full task body, the entire comment conversation, and every image URL are written to the saved file. Read that file to access the full content.
Image URLs embedded in comments (markdown  or HTML <img>) are resolved to absolute
https://timeline.panteon.no/... URLs. Non-image attachment links (e.g. .csv) are excluded.
Output location
The file is written to <base>/timeline/<issue_id>/task.md, where <base> is:
PANTEON_TIMELINE_DIRenv var, if set (this MCP is configured with it pointing at theduell-adminproject root); otherwisethe current working directory.
๐ป Command-Line Usage
The same fetch logic is available from the shell via fetch_task.py (credentials come from .env):
# By numeric ID or full URL
.venv/bin/python fetch_task.py 5461
.venv/bin/python fetch_task.py "https://timeline.panteon.no/tasks#/list/15033/edit/5461"
# Also print the rendered markdown to stdout
.venv/bin/python fetch_task.py 5461 --print
# Write under a specific project root instead of PANTEON_TIMELINE_DIR / cwd
.venv/bin/python fetch_task.py 5461 --base-dir /path/to/project๐งช Development & Testing
# Install dev dependencies (adds pytest)
.venv/bin/python -m pip install -r requirements-dev.txt
# Run the unit tests โ no network or credentials required
.venv/bin/python -m pytestTests live in tests/ and cover the pure parsing/rendering helpers plus authentication-error handling (via a mocked HTTP session).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityCmaintenanceEnables AI clients to interact with Webvizio projects and development tasks through a standardized interface. Provides access to task management, screenshots, logs, and project details for streamlined development workflows.11196MIT- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with Rytnow project management platform, supporting task management, time tracking, plan creation, and team collaboration through natural language commands.
- AlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with ClickUp workspaces through natural language - search tasks, manage workflows, track time, collaborate via comments, and access complete task context including comments and images.
- AlicenseAqualityDmaintenanceEnables AI assistants to fetch ProofHub task details, comments, and bug tracker links from a URL, streamlining development workflows.612MIT
Related MCP Connectors
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Give AI agents access to form submissions โ read, search, update, and process file attachments.
Connect AI assistants to ITM Platform projects, tasks, budgets, risks, and team workload.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/hspanteon/timeline-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server