npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@telos.ready/mcp

v1.7.0

Published

Telos MCP server for managing tickets and project tasks

Readme

Telos MCP Server

A Model Context Protocol (MCP) server that provides access to Telos project management tools. This server allows AI assistants to interact with Telos tickets, documentation, and project tasks.

Features

This MCP server provides 8 tools for managing Telos projects:

Core Tools

  1. ask-question - Ask questions about tickets and get AI-powered answers with context
  2. get-ticket-details - Retrieve full ticket information including description and comments
  3. add-ticket-comment - Add comments to existing tickets
  4. get-next-task - Get the next prioritized task for a specific application

Development Tools

  1. get-git-branch-for-ticket - Get the correct git branch name for ticket development
  2. mark-ticket-as-blocked - Mark tickets as blocked with a reason
  3. add-documentation - Create knowledge tickets with documentation content
  4. update-action-item - Update the status of action items in tickets

Installation

Using with MCP Clients

Add to your MCP client configuration:

Claude Desktop

Update your ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "telos": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-telos"],
      "env": {
        "TELOS_PERSONAL_ACCESS_TOKEN": "<YOUR_PAT_TOKEN>"
      }
    }
  }
}

Cursor MCP

Update your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "telos": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-telos"],
      "env": {
        "TELOS_PERSONAL_ACCESS_TOKEN": "<YOUR_PAT_TOKEN>"
      }
    }
  }
}

Local Development

# Clone the repository
git clone <repository-url>
cd telos-mcp

# Install dependencies
npm install

# Build the project
npm run build

# Run locally
TELOS_PERSONAL_ACCESS_TOKEN=pat_your_token_here node build/index.js

Configuration

Required Environment Variables

  • TELOS_PERSONAL_ACCESS_TOKEN - Your Telos Personal Access Token (starts with pat_)

Optional Environment Variables

  • TELOS_BASE_URL - Base URL for Telos instance (defaults to https://go.telosready.com)

Getting Your Personal Access Token

  1. Log into your Telos instance
  2. Go to Account → Personal Access Tokens
  3. Create a new token with a descriptive name
  4. Copy the token (it starts with pat_)
  5. Use it in your MCP configuration

Tool Usage Examples

Add a Comment to a Ticket

{
  "name": "add-ticket-comment",
  "arguments": {
    "ticketReference": "TEL037",
    "content": "I've reviewed the requirements and have some questions about the implementation approach.",
    "internal": false
  }
}

Get Ticket Details

{
  "name": "get-ticket-details",
  "arguments": {
    "ticketReference": "TEL037"
  }
}

Mark Ticket as Blocked

{
  "name": "mark-ticket-as-blocked",
  "arguments": {
    "ticketReference": "TEL037",
    "reason": "Waiting for external API documentation"
  }
}

Get Next Task

{
  "name": "get-next-task",
  "arguments": {
    "applicationSlug": "myapp"
  }
}

Update Action Item Status

{
  "name": "update-action-item",
  "arguments": {
    "ticketReference": "TEL037",
    "actionPoint": "Review database schema",
    "status": "COMPLETED"
  }
}

Error Handling

The server will return appropriate error messages for:

  • Authentication failures (invalid PAT token)
  • Missing required parameters
  • Ticket not found
  • Network connectivity issues
  • Telos API errors

Development

Building

npm run build

Publishing

npm whoami
npm login
npm version patch|minor|major
npm publish --access public

Advanced Features

For full access to all Telos MCP features, you can also connect directly to your Telos instance:

{
  "mcpServers": {
    "telos-direct": {
      "type": "sse",
      "url": "https://go.telosready.com/mcp?apiKey=pat_your_token_here"
    }
  }
}

This provides access to advanced features like:

  • AI-powered question answering
  • Real-time ticket updates
  • Advanced action item management

Support

If you encounter issues:

  1. Check that your PAT token is valid and not expired
  2. Verify you have access to the applications/tickets you're trying to access
  3. Ensure your Telos instance URL is correct
  4. Check the MCP client logs for detailed error messages

License

ISC