CompletionKit MCP Server

Prompt evals over MCP: run a prompt on your dataset, score each output 1-5 with an LLM judge.

Remote serverstreamable-httpGo

What is the CompletionKit MCP server?

CompletionKit MCP server exists for a simple reason — assistants are far more useful when they can act on CompletionKit directly instead of describing what you should do. Prompt evals over MCP: run a prompt on your dataset, score each output 1-5 with an LLM judge.

What you get

Run every prompt against real data. Score each output with an LLM judge against criteria you define. Change anything: the prompt, the model, the temperature, the dataset. Re-run and see exactly what got better and what broke. When the scores tell you something's off, CompletionKit suggests an improved prompt based on the judge's actual feedback on your runs. You inspect the diff, apply it as a new version, and verify the improvement.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

What the assistant can call

Once CompletionKit is connected, these are the calls the assistant has available:

Configuration and credentials

You will need 8 environment variables: OPENAI_API_KEY, ANTHROPIC_API_KEY, OPENROUTER_API_KEY, COMPLETION_KIT_ENCRYPTION_PRIMARY_KEY, COMPLETION_KIT_ENCRYPTION_DETERMINISTIC_KEY, COMPLETION_KIT_API_TOKEN, YOUR_TOKEN, DATABASE_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the completionkit mcp server does with a few real requests.

Choosing this one

This sits in the AI and media services group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. CompletionKit's toolset — Encryption — is a fair guide to whether it matches your workflow. It is maintained by com.completionkit; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against CompletionKit's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
EncryptionProvider API keys are encrypted at rest using [Active Record encryption](https://guides.rubyonrails.org/active_record_encryption.html). You need three encryption keys configured before the app will boot in production.

How to install the CompletionKit MCP server

{
  "mcpServers": {
    "completion-kit": {
      "url": "https://your-app.com/completion_kit/mcp",
      "headers": { "Authorization": "Bearer YOUR_TOKEN" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
OPENAI_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
OPENROUTER_API_KEYCredential the server authenticates with.Yes
COMPLETION_KIT_ENCRYPTION_PRIMARY_KEYCredential the server authenticates with.Yes
COMPLETION_KIT_ENCRYPTION_DETERMINISTIC_KEYCredential the server authenticates with.Yes
COMPLETION_KIT_API_TOKENCredential the server authenticates with.Yes
YOUR_TOKENCredential the server authenticates with.Yes
DATABASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use CompletionKit to Encryption.

Frequently asked questions

It connects CompletionKit to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Encryption) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with CompletionKit directly.