keystone-mcp
Emits all four kinds (rules, reasoning, skills, commands) from Confluence page content.
Emits CODEOWNERS and branch protection rules, and reasoning from PRs and releases.
Emits reasoning from issues and JQL search results.
Emits reasoning from issues and GraphQL filter results.
Emits rules, reasoning, skills, and commands from local Markdown files.
Emits all four kinds from page content and reasoning from database rows.
Emits rules from pinned messages and reasoning from recent discussion.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@keystone-mcpshow me the deploy rules"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
keystone-mcp
An MCP server that retrieves contextual information from company resources and surfaces it to coding agents as rules, reasoning, skills, and commands.
The agent treats each kind differently:
rules — constraints to obey (
must/should/may)reasoning — background facts and intent
skills — procedural how-to knowledge (multi-step playbooks)
commands — canned invocations (shell commands, scripts, named recipes)
Instead of cramming organizational context into every system prompt, the agent
asks for context by intent (get_rules("deploy"), get_reasoning("billing-service"))
and the broker fans the request out to the right backing source.
Status
Phases 1–9 shipped. Seven adapters live, plus a shared classifier, multi-source merge with conflict resolution, and a persistent sqlite cache. 171 tests pass.
See PLAN.md for the full design and remaining open work.
Related MCP server: Claude Habitat
Adapters
Adapter | Auth | What it emits |
| none (repo-local) | rules / reasoning / skills / commands |
| PAT | CODEOWNERS, branch protection (rules); PRs, releases (reasoning) |
| email + API token | page content (all four kinds) |
| integration token | page content (all four kinds), database rows (reasoning) |
| email + API token | issues, JQL search (reasoning) |
| personal API key | issues, GraphQL filter (reasoning) |
| bot OAuth token | pinned messages (rules), recent discussion (reasoning) |
Install
Until the package is published (Phase 11), clone and run from source:
git clone tacoda_github:tacoda/keystone-mcp.git
cd keystone-mcp
uv syncRun the server:
uv run python -m keystone_mcp.serverOr wire it into a Claude Code project as an MCP server. Add to .mcp.json:
{
"mcpServers": {
"keystone": {
"command": "uv",
"args": [
"--directory", "/path/to/keystone-mcp",
"run", "python", "-m", "keystone_mcp.server"
],
"env": {
"KEYSTONE_CONFIG": "/path/to/your/project/.keystone/context.yaml"
}
}
}
}The config path defaults to .keystone/context.yaml relative to the working
directory; override with KEYSTONE_CONFIG.
Quickstart
Create
.keystone/context.yamlin your project:sources: docs: type: markdown root: .keystone/context/ topics: deploy-policy: description: | Rules and context for production deploys. sources: - source: docs query: { file: deploy-policy.md } classify: rules: { heading: "Rules", severity: must } reasoning: { heading: "Background" } cache: 15mCreate
.keystone/context/deploy-policy.md:# Deploy Policy ## Rules - MUST run full CI green before any production deploy. - SHOULD prefer Tuesday/Wednesday morning deploys. ## Background The team adopted these rules after a 2025 incident.Start the server. The agent now sees
deploy-policyinlist_topicsand can callget_rules("deploy-policy")to load the two rules.
The repo's own .keystone/context.yaml is a
working example with topics for deploys, ownership, coding standards, and a
release playbook (plus commented-out examples of every external adapter).
MCP surface
Tools
Tool | Returns |
| full envelope (rules + reasoning + skills + commands) |
| rules only |
| reasoning only |
| skills only |
| commands only |
| directory of configured topics |
| adapter reachability + auth state |
Resources
URI | Purpose |
| configured topic directory |
| full envelope for one topic |
Envelope shape
Every retrieval returns the same envelope. Example:
{
"topic": "deploy-policy",
"rules": [
{
"id": "rules-001",
"text": "run full CI green before any production deploy.",
"source": "markdown://deploy-policy.md#rules",
"severity": "must"
}
],
"reasoning": [
{
"text": "The team adopted these rules after a 2025 incident.",
"source": "markdown://deploy-policy.md#background"
}
],
"skills": [],
"commands": [],
"fetched_at": "2026-06-10T14:32:00+00:00",
"cache_hit": false
}Configuration
Topics
Topics are the agent-facing abstraction. Each topic binds one or more adapter calls and declares how their output classifies into the four kinds:
topics:
repo-policy:
description: Combined ownership and branch-protection rules.
sources:
- source: docs
query: { file: owners.md }
classify:
rules: { heading: "Required reviewers" }
- source: gh
query: { type: codeowners }
- source: gh
query: { type: branch_protection, branch: main }
cache: 5mSingle-source topics can use the shorthand:
topics:
rollback:
description: Rollback procedure.
source: docs
query: { file: rollback.md }
classify:
rules: { heading: "Rules" }Multi-source merge
When two sources contribute rules whose normalized text matches:
Highest severity wins (
must > should > may).Ties at the top severity keep both rules so each source stays cited.
Reasoning, skills, and commands stay additive — no deduplication.
Classify selectors
markdown, confluence, and notion share the same heading-based
vocabulary. Sections split by H2; skills/commands sub-split by H3.
classify:
rules:
heading: "Rules" # single or list, e.g. ["Rules", "Must"]
severity: must # default for bullets without MUST/SHOULD/MAY prefix
reasoning:
heading: "Background"
# or
all: true # everything not matched by another kind
skills:
heading: "Procedures" # each H3 → one skill (name + body)
commands:
heading: "Commands" # each H3 → one command (first code block = invocation)For github, jira, linear, slack the query type determines the kind
(e.g. codeowners → rules, recent_prs → reasoning).
Secrets
Reference environment variables with the env: prefix:
sources:
gh:
type: github
repo: acme/widgets
auth: env:GITHUB_TOKENThe loader fails fast at startup if a referenced env var is unset.
Cache
Default is in-memory (lost on restart). Persistent sqlite cache survives process restarts:
cache:
backend: sqlite
path: .keystone/cache.dbPer-topic TTLs use 5s / 10m / 2h / 1d syntax.
Development
uv sync # install deps
uv run pytest -q # run tests
uv run python -m keystone_mcp.server # run serverThe test suite uses respx to mock all external APIs — no live credentials
required.
License
TBD.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tacoda/keystone-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server