performance_review_generate

Pack: performance-review · Endpoint: https://gateway.pipeworx.io/performance-review/mcp

Generate a formatted performance review document. Provide employee name, review period (e.g., “Q4 2024”), accomplishments, and improvement areas. Returns complete review text ready for HR submission.

Example call

Arguments

{
  "employee_name": "Sarah Chen",
  "role": "Senior Software Engineer",
  "rating": "rockstar",
  "actual_performance": "Delivered critical microservices migration on schedule, mentored 2 junior engineers, reduced API latency by 40%",
  "what_manager_wants_to_say": "Sarah consistently exceeds expectations and is a key technical leader on the team"
}

curl

curl -X POST https://gateway.pipeworx.io/performance-review/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"performance_review_generate","arguments":{"employee_name":"Sarah Chen","role":"Senior Software Engineer","rating":"rockstar","actual_performance":"Delivered critical microservices migration on schedule, mentored 2 junior engineers, reduced API latency by 40%","what_manager_wants_to_say":"Sarah consistently exceeds expectations and is a key technical leader on the team"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('performance_review_generate', {
  "employee_name": "Sarah Chen",
  "role": "Senior Software Engineer",
  "rating": "rockstar",
  "actual_performance": "Delivered critical microservices migration on schedule, mentored 2 junior engineers, reduced API latency by 40%",
  "what_manager_wants_to_say": "Sarah consistently exceeds expectations and is a key technical leader on the team"
});

More examples

{
  "employee_name": "Marcus Johnson",
  "role": "Product Manager",
  "rating": "developing",
  "actual_performance": "Launched 3 features but 2 missed target metrics, needs stronger data-driven decision making",
  "what_manager_wants_to_say": "Marcus has good instincts but should focus on more rigorous validation before launches"
}

Response shape

FieldTypeDescription
review_textstringGenerated performance review document text
statusstringStatus of review generation
Full JSON Schema
{
  "type": "object",
  "properties": {
    "review_text": {
      "type": "string",
      "description": "Generated performance review document text"
    },
    "status": {
      "type": "string",
      "description": "Status of review generation"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "performance-review": {
      "url": "https://gateway.pipeworx.io/performance-review/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026