Creedspace MCP Server

Constitutional-AI safety guardrails for any LLM — personas, constitutions, adjudication.

Remote serverstreamable-httpPython

What is the Creedspace MCP server?

Creedspace MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. Constitutional-AI safety guardrails for any LLM — personas, constitutions, adjudication.

What you get

Universal MCP server for Creed Space - AI safety guardrails in 10 seconds.

Creed Space provides personalized AI safety guardrails through Constitutional AI personas. Each persona enforces specific values and behaviors, ensuring AI assistants operate within defined ethical boundaries.

What the assistant can call

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

  • get_constitution — Get the merged constitution for a persona
  • get_constitution_by_id — Get a specific constitution by ID
  • search_constitutions — Search the constitution library
  • list_personas — List all available personas
  • set_persona — Switch the active persona
  • get_active_persona — Get the currently active persona
  • get_uvc_qualities — Get desired/disliked/never qualities
  • get_system_prompt — Get a complete persona system prompt
  • preview_export — Preview the export configuration
  • adjudicate — Get a policy decision kernel for a request
  • attest_response — Validate a response against the active creed
  • get_anchor — Get a compact non-negotiable-rules anchor

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.

Configuration and credentials

You will need 3 environment variables: CREEDSPACE_API_URL, CREEDSPACE_API_KEY, YOUR_KEY. 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.

Choosing this one

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Creedspace's toolset — get_constitution, get_constitution_by_id, search_constitutions and 11 more — is a fair guide to whether it matches your workflow. It is maintained by Creed-Space; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Creedspace.
  • 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 creedspace mcp server does with a few real requests.

Available tools

ToolWhat it does
get_constitutionGet the merged constitution for a persona
get_constitution_by_idGet a specific constitution by ID
search_constitutionsSearch the constitution library
list_personasList all available personas
set_personaSwitch the active persona
get_active_personaGet the currently active persona
get_uvc_qualitiesGet desired/disliked/never qualities
get_system_promptGet a complete persona system prompt
preview_exportPreview the export configuration
adjudicateGet a policy decision kernel for a request
attest_responseValidate a response against the active creed
get_anchorGet a compact non-negotiable-rules anchor
heartbeatPeriodic re-anchoring to prevent context drift
clear_cacheClear the local cache

How to install the Creedspace MCP server

{
  "mcpServers": {
    "creedspace": {
      "command": "npx",
      "args": ["-y", "@creedspace/mcp-server"],
      "env": {
        "CREEDSPACE_API_URL": "your-value",
        "CREEDSPACE_API_KEY": "your-value",
        "YOUR_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
CREEDSPACE_API_URLEndpoint or connection string the server talks to.Yes
CREEDSPACE_API_KEYCredential the server authenticates with.Yes
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Creedspace to get constitution.
  • Use Creedspace to get constitution by id.
  • Use Creedspace to search constitutions.

Frequently asked questions

It connects Creedspace to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_constitution, get_constitution_by_id, search_constitutions, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Creedspace directly.