atlasent-mcp-server: Instructions file for Claude Code

CLAUDE.md

atlasent-mcp-server CLAUDE.md is an instructions file for Claude Code from AtlaSent-Systems-Inc/atlasent-mcp-server. It costs 3,897 tokens per session, scanned A, original, Apache-2.0.

A set of Claude Code instructions for the AtlaSent MCP server, which checks authorization before an AI agent executes an action. It describes the server’s architecture, request formats, modes, timeouts, and deny-by-default behavior.

In plain words
What is it for?
Use it when developing, testing, or reviewing the AtlaSent MCP server and its authorization tools.
Why use it?
It gives developers shared rules for changing or reviewing this server without breaking its authorization checks. It also documents how the server connects to AtlaSent’s API or uses its local rules engine.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md.

This is AtlaSent-Systems-Inc/atlasent-mcp-server's own configuration. It tells Claude Code how to work on atlasent-mcp-server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything atlasent-mcp-server configures →

Reuse

Borrowing it

Nothing to install: this file belongs to AtlaSent-Systems-Inc/atlasent-mcp-server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/AtlaSent-Systems-Inc/atlasent-mcp-server/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/AtlaSent-Systems-Inc/atlasent-mcp-server

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for atlasent-mcp-server CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md/github.svg)](https://agentmods.dev/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for atlasent-mcp-server CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md"><img src="https://agentmods.dev/badge/instructions/atlasent-systems-inc/atlasent-mcp-server/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 3,897 This file is loaded in full into every session.
When invoked 3,897 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.03897 $0.03897
Opus 5 $0.01948 $0.01948
Sonnet 5 $0.00779 $0.00779
Haiku 4.5 $0.00390 $0.00390

Measured 2d ago against content hash 211b3236a509, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

atlasent-mcp-server CLAUDE.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

CLAUDE.md · 167 lines

How it starts

The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@atlasent/mcp-server

MCP server that enforces authorize-before-execute for any MCP-compatible AI agent.

Architecture baseline

Canonical cross-repo reference: atlasent-docs/architecture/ARCHITECTURE-BASELINE.md

This repo's role: MCP distribution layer — exposes AtlaSent authorization as MCP tools (atlasent_evaluate, atlasent_verify_permit) for any MCP-compatible agent host (Claude Desktop, Cursor, Windsurf) without requiring a custom SDK integration.

Cross-repo invariants for this repo:

  • Wire shape source of truth: atlasent-api/supabase/functions/v1-{evaluate,verify-permit}/handler.ts. Do not invent new request/response shapes here.
  • Fail-closed at every layer: any error in authorize() or verify() collapses to deny. This is non-negotiable.
  • 10-second request timeout on every hosted-API fetch (AbortSignal.timeout()). A hung API must not block the agent.
  • Mode dispatch reads env vars at call time (not module load), so tests can swap config without reload.

Architecture

src/
  decision.ts                   Decision / VerifyResult types + toolResult() MCP envelope helper
  localEngine.ts                Tiny rules engine used when no hosted backend is configured
  engine.ts                     authorize() / verify(): dispatches to local or remote; fail-closed wrapper
  server.ts                     createServer(): registers evaluate, verify_permit, deploy_service + 20+ tools
  canonCatalog.ts               GENERATED-DERIVED: the canonical action specs incl. canon_id (from the atlasent repo); backs atlasent_lookup_action. Re-sync with scripts/sync-canon.mjs
  canonGraph.ts                 GENERATED-DERIVED: per-action knowledge-graph neighborhood + compliance (from atlasent/generated/authorization-graph.json); enriches atlasent_lookup_action. Re-sync with scripts/sync-canon.mjs
  atlasCatalog.ts               GENERATED-DERIVED: the Knowledge Atlas (concepts + edges, from atlasent-docs/architecture/traceability/atlas.json); backs atlasent_atlas_lookup. Re-vendor with scripts/vendor-atlas.mjs
  v2Tools.ts                    Wave B tools: atlasent_evaluate_many, atlasent_evaluate_stream, atlasent_query
  v2Client.ts                   HTTP clients for Wave A endpoints; FeatureNotEnabledError on 404
  complianceTools.ts            SCIM, SIEM config, evidence export MCP tools
  vqpTools.ts                   VQP snapshot generation, verification, drift event tools
  streamableHttp.ts             Streamable HTTP transport (MCP HTTP mode)
  index.ts                      CLI entry point; connects stdio transport
  server.test.ts                Unit tests: tools/list, evaluate (local + remote), verify_permit, deploy_service
  server.readonly.test.ts       READONLY mode tests
  complianceTools.test.ts       Compliance tool unit tests
  v2Tools.test.ts               V2 Wave B tool unit tests
  v2Client.test.ts              V2 HTTP client unit tests
  streamableHttp.integration.test.ts  Streamable HTTP transport integration tests
  integration.test.ts           Live-API tests; require ATLASENT_API_KEY + ATLASENT_BASE_URL, skip otherwise
  integration.write.test.ts     Live-API write tests (mutating tools)

examples/
  demo.mjs            End-to-end script: spawns server, drives evaluate -> deploy -> verify flow

.github/workflows/
  ci.yml              build + test on push/PR, Node 18/20/22 matrix
  integration.yml     nightly integration tests against the hosted API
  publish.yml         npm publish --access public (cosign-signed tarball) on v* tag push, gated by an AtlaSent release check

Read the full file on GitHub · 167 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago Changed · +2 lines · +348 tokens per session 211b3236a509
  2. 3d ago Changed · -2 lines · -29 tokens per session 8969993def3f
  3. 4d ago Changed · +2 lines · +269 tokens per session 134510eda504
  4. 10d ago First seen · 165 lines · 3,309 tokens per session scan A d7d9996d9db7

Subscribe to this mod's changes

atlasent-mcp-server CLAUDE.md is an instructions file published in the GitHub repository AtlaSent-Systems-Inc/atlasent-mcp-server (0 stars, last pushed 3d ago), licensed Apache-2.0. It adds 3,897 tokens to every session, about $0.0195 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens