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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@copado-mcp/copado-ai

v1.0.0

Published

Copado AI MCP Server - Connect Copado's AI agents to any AI Client

Downloads

7

Readme

Copado AI MCP Server

A Model Context Protocol (MCP) server that connects AI clients to Copado AI Platform, including access to all of Copado AI's agents.

Configuration

AI Client Setup

Add to your Claude Desktop configuration (other AI clients will have similar configuration file structure):

{
  "mcpServers": {
    "copado-ai": {
      "command": "npx",
      "args": ["@copado-mcp/copado-ai"],
      "env": {
        "CRT_ACCESS_KEY": "your-personal-access-token",
        "AI_PLATFORM_ORG_ID": "your-organization-id",
        "AI_PLATFORM_BASE_URL": "https://copadogpt-api.robotic.copado.com"
      }
    }
  }
}

OR

Install globally via npm:

npm install -g @copado-mcp/copado-ai

Add to your Claude Desktop configuration (other AI clients will have similar configuration file structure):

{
  "mcpServers": {
    "copado-ai": {
      "command": "copado-ai",
      "env": {
        "CRT_ACCESS_KEY": "your-personal-access-token",
        "AI_PLATFORM_ORG_ID": "your-organization-id",
        "AI_PLATFORM_BASE_URL": "https://copadogpt-api.robotic.copado.com"
      }
    }
  }
}

Environment Variables

  • CRT_ACCESS_KEY (required): Your Copado personal access token
  • AI_PLATFORM_ORG_ID (required): Your AI Platform organization ID
  • AI_PLATFORM_BASE_URL (required): AI Platform API URL (based on region, default: https://copadogpt-api.robotic.copado.com)

Getting Your Access Key

  1. Log into Copado Robotic Testing
  2. Go to User Settings & Preferences
  3. Create a Personal Access Key
  4. Use this key for CRT_ACCESS_KEY

Available Tools

Copado Robotic Testing (CRT)

  • test_crt_connection - Test connection to CRT API
  • get_project_jobs - Get all test jobs for a project with filtering options
  • get_job_details - Get detailed information about a specific test job

AI Platform - Workspaces

  • list_workspaces - List all available workspaces in your organization
  • read_workspace - Read details of a specific workspace
  • create_workspace - Create a new workspace
  • update_workspace - Update workspace details (managers only)
  • delete_workspace - Remove a workspace (managers only)

AI Platform - Datasets

  • create_dataset - Create a new dataset for organization or workspace
  • list_datasets - List organization-owned datasets
  • read_dataset - Read dataset details
  • update_dataset - Update dataset configuration
  • delete_dataset - Delete a dataset and its documents
  • list_workspace_datasets - List datasets owned by a workspace
  • list_workspace_dataset_memberships - List dataset memberships for a workspace

AI Platform - Dataset Management

  • list_dataset_member_workspaces - List workspace memberships for organization datasets
  • create_dataset_member_workspace - Add workspace membership to organization dataset
  • update_dataset_member_workspace - Update workspace dataset membership status
  • delete_dataset_member_workspace - Remove workspace from organization dataset

AI Platform - Documents

  • create_document_in_dataset - Upload document to a dataset
  • list_documents_in_dataset - List all documents in a dataset
  • delete_document_in_dataset - Remove document from dataset
  • create_document_in_dialogue - Upload document to a dialogue
  • list_documents_in_dialogue - List all documents in a dialogue
  • delete_document_in_dialogue - Remove document from dialogue

AI Platform - Dialogues

  • create_dialogue - Start a new AI conversation
  • list_dialogues - List your dialogues
  • read_dialogue_with_messages - Read dialogue details with message history
  • update_dialogue - Modify dialogue settings
  • delete_dialogue - Remove a dialogue and its documents

AI Platform - Messages

  • create_message - Send message to AI and get response
  • cancel_message - Cancel ongoing message response stream

AI Platform - Members

  • create_member - Invite user to workspace
  • update_member - Update member permissions (managers only)
  • delete_member - Remove member from workspace

AI Platform - Activity & Analytics

  • list_activity - View user activity logs (admin gets all users, others get own activity)
  • summary_organization - Get organization activity summary and usage metrics

AI Platform - Integrations

  • list_integrations - List all organization integrations
  • create_integration - Add new integration to organization
  • configure_integration - Get integration configuration details
  • delete_integration - Remove integration from organization

Usage Examples

Test my CRT connection

Get all jobs for project 12345

Create a new workspace called "QA Testing" for quality assurance workflows

List all datasets in my organization

Create a dialogue named "Bug Analysis" in workspace abc-123

Send message "Analyze this test failure" to dialogue xyz-789

License

MIT License - see LICENSE file for details