MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

Agent skills for the Truesight MCP: step-by-step workflow playbooks for scoring inputs, building live evaluations, error analysis, and the review loop. Works with Claude Code, Cursor, and any client that supports the agent skills standard.

Created 3/2/2026
Updated about 4 hours ago
Repository documentation and setup instructions

Truesight MCP Skills

Agent skills and Cursor plugin for the Truesight MCP -- step-by-step workflow playbooks for scoring inputs, building live evaluations, error analysis, and the review loop.

Works with Claude Code, Cursor, and any client that supports the agent skills standard.

Skills

| Skill | What it does | |-------|-------------| | truesight-mcp | Decision tree + playbooks for scoring inputs (A), error analysis (B), and the review-and-promote loop (C) | | create-evaluation | Scope, build, and deploy a new live evaluation from scratch -- includes judgment_configs schema reference and mandatory api_key storage guidance |

Prerequisites

  1. A Truesight account
  2. The Truesight MCP configured in your AI client

Cursor Plugin

This repo is a Cursor Marketplace plugin. Installing it via the marketplace adds the Truesight MCP server and both skills to Cursor in one step.

After installing, replace YOUR_API_KEY_HERE in ~/.cursor/mcp.json with your platform API key.

Install skills manually

Project-level (recommended for team workflows)

curl -fsSL https://raw.githubusercontent.com/Goodeye-Labs/truesight-mcp-skills/main/skills/truesight-mcp/SKILL.md \
  -o .claude/skills/truesight-mcp/SKILL.md --create-dirs

curl -fsSL https://raw.githubusercontent.com/Goodeye-Labs/truesight-mcp-skills/main/skills/create-evaluation/SKILL.md \
  -o .claude/skills/create-evaluation/SKILL.md --create-dirs

Global (available in all projects)

curl -fsSL https://raw.githubusercontent.com/Goodeye-Labs/truesight-mcp-skills/main/skills/truesight-mcp/SKILL.md \
  -o ~/.claude/skills/truesight-mcp/SKILL.md --create-dirs

curl -fsSL https://raw.githubusercontent.com/Goodeye-Labs/truesight-mcp-skills/main/skills/create-evaluation/SKILL.md \
  -o ~/.claude/skills/create-evaluation/SKILL.md --create-dirs

Usage

Once installed, your AI assistant will automatically pick up the right skill based on what you ask:

  • "Score these inputs against my quality eval" -- triggers truesight-mcp, Workflow A
  • "Analyze the errors in my dataset" -- triggers truesight-mcp, Workflow B
  • "Review and promote these flagged results" -- triggers truesight-mcp, Workflow C
  • "Create an evaluation for response quality" -- triggers create-evaluation

License

MIT

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/Goodeye-Labs/truesight-mcp-skills
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "goodeye-labs-truesight-mcp-skills": { "command": "git", "args": [ "clone", "https://github.com/Goodeye-Labs/truesight-mcp-skills" ] } } }