Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/maphnet/jc-mcp/claude-mdgit clone --depth 1 https://github.com/maphnet/jc-mcpWrote 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.
[](https://agentmods.dev/instructions/maphnet/jc-mcp/claude-md)<a href="https://agentmods.dev/instructions/maphnet/jc-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/maphnet/jc-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01272 | $0.01272 |
| Opus 5 | $0.00636 | $0.00636 |
| Sonnet 5 | $0.00254 | $0.00254 |
| Haiku 4.5 | $0.00127 | $0.00127 |
Grade A, and why
jc-mcp 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
Project Overview
jc-mcp (@maphnet/jc-mcp) is a Jira and Confluence MCP (Model Context Protocol) server focused on optimizing token efficiency for everyday tasks. Unlike general-purpose Atlassian MCP servers, this server is designed to return concise, structured responses that minimize token consumption while preserving the information LLM agents actually need.
Development Commands
npm install # Install dependencies
npm run build # Compile TypeScript to dist/
npm start # Run the compiled server (stdio transport)
npm run dev # Run with auto-reload (tsx watch)
npm test # Run tests once (vitest)
npm run test:watch # Run tests in watch mode
npx tsc --noEmit # Type-check without emitting
Publishing to npm
npm version patch # bump version (patch / minor / major)
npm run build # compile TypeScript
npm publish --access public # publish @maphnet/jc-mcp (scoped → needs flag)
git push && git push --tags # push version commit + tag created by npm version
Requires npm login if not already authenticated.
Architecture
The server uses @modelcontextprotocol/sdk with stdio transport. Tool implementations live in src/tools/, each exporting a register(server, client) function and a testable handle* function.
src/
├── index.ts # MCP server init + tool registration + stdio transport
├── config.ts # Env var loading (ATLASSIAN_URL, EMAIL, TOKEN, CLOUD_ID)
├── client.ts # HTTP client for Jira/Confluence REST APIs (Basic auth)
├── adf-to-markdown.ts # ADF + Confluence storage format → markdown converter
├── markdown-to-adf.ts # Markdown → ADF (Jira) & XHTML storage (Confluence) converter
├── types.ts # Lean response type definitions
└── tools/ # One file per MCP tool (20 tools total)
├── get-issue.ts # Priority 1: Jira issue read (flattened, ADF→markdown)
├── get-transitions.ts# Priority 1: Workflow transitions ([{id, name}])
├── edit-issue.ts # Priority 1: Issue field update ({ok, key})
├── transition-issue.ts# Priority 1: Workflow state change
├── convert-issue-type.ts # Priority 1: Issue type conversion with two-step PUT ({ok, key, issueType, parentKey})
├── create-issue.ts # Priority 2: Issue creation ({key, url})
├── add-comment.ts # Priority 2: Comment (markdown → ADF)
├── search-issues.ts # Priority 2: JQL search (lean results)
├── get-current-user.ts # User info: authenticated user ({accountId, displayName, email, active})
├── lookup-user.ts # User lookup: find user by email ([{accountId, displayName, email, active}])
├── create-version.ts # Version management: create release ({id, name})
├── list-versions.ts # Version management: list releases ([{id, name, released, releaseDate}])
├── release-version.ts# Version management: mark released ({ok, id, name})
├── add-issue-link.ts # Issue links: create link ({ok, issueKey, targetKey, linkType})
├── remove-issue-link.ts # Issue links: delete link ({ok, linkId})
├── get-issue-links.ts# Issue links: list links ([{id, type, inwardIssue?, outwardIssue?}])
├── get-article.ts # Priority 3: Confluence page read
├── create-article.ts # Priority 3: Confluence page creation
├── update-article.ts # Priority 3: Confluence page update
└── search-articles.ts# Priority 3: Confluence CQL search
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.
- 4d ago First seen · 87 lines · 1,272 tokens per session scan A 6584d3bd76f5
jc-mcp CLAUDE.md is an instructions file published in the GitHub repository maphnet/jc-mcp (0 stars, last pushed 5d ago), licensed MIT. It adds 1,272 tokens to every session, about $0.0064 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.
Other instructions, from other repositories
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).
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.
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.
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.
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.
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).