slima-mcp: Instructions file for Claude Code

CLAUDE.md

slima-mcp CLAUDE.md is an instructions file for Claude Code from slima-ai/slima-mcp. It costs 3,741 tokens per session, scanned A, original, MIT.

A set of instructions for using Slima MCP, a server that lets AI tools interact with Slima’s book-management and AI beta-reader features. MCP, or Model Context Protocol, is a standard way for AI tools to connect to external services.

In plain words
What is it for?
It helps configure or develop integrations for tools such as Claude Desktop, ChatGPT, Gemini CLI, Cursor, and VS Code.
Why use it?
It provides the project context needed for AI tools to work with the server and its connected book service.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code; mentions Gemini CLI.

This is slima-ai/slima-mcp's own configuration. It tells Claude Code how to work on slima-mcp 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 slima-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to slima-ai/slima-mcp. 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/slima-ai/slima-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/slima-ai/slima-mcp

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 slima-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/slima-ai/slima-mcp/claude-md/github.svg)](https://agentmods.dev/instructions/slima-ai/slima-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/slima-ai/slima-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/slima-ai/slima-mcp/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 slima-mcp CLAUDE.md

Your own site · 80×15
<a href="https://agentmods.dev/instructions/slima-ai/slima-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/slima-ai/slima-mcp/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 3,741 This file is loaded in full into every session.
When invoked 3,741 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.03741 $0.03741
Opus 5 $0.01870 $0.01870
Sonnet 5 $0.00748 $0.00748
Haiku 4.5 $0.00374 $0.00374

Measured 8d ago against content hash cc70786a142b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

slima-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 8d 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 · 461 lines

How it starts

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

CLAUDE.md - Slima MCP

此文件提供 Claude Code 理解專案的必要上下文。

專案概述

Slima MCP (slima-mcp on npm) 是一個 MCP (Model Context Protocol) 伺服器,讓所有支援 MCP 的 AI 工具都能與 Slima 書籍管理和 AI Beta Reader 功能互動。

支援平台(MCP 已成為業界標準)

平台 狀態 備註
Claude Desktop 原生支援
ChatGPT Desktop Developer Mode (2025.10+)
Gemini CLI 原生支援
Cursor 原生支援
Clawdbot Via Skills
VS Code Via MCP extensions

2025.12 MCP 捐給 Linux Foundation (AAIF),由 Anthropic + OpenAI + Block 共同創立。

架構定位

┌─────────────────┐     MCP (STDIO)     ┌─────────────────┐     HTTP/REST     ┌─────────────────┐
│  Claude Desktop │                     │                 │                   │                 │
│  ChatGPT        │ ◄─────────────────► │   slima-mcp     │ ◄───────────────► │   slima_rails   │
│  Gemini CLI     │                     │   (npm 套件)    │                   │   (API)         │
│  Cursor / etc.  │                     │                 │                   │                 │
└─────────────────┘                     └─────────────────┘                   └─────────────────┘
     AI 工具                              Thin Client                          業務邏輯

Thin Client 架構

  • MCP Server 只負責協議轉換,不包含業務邏輯
  • 所有資料驗證、權限控制、AI 處理都在 Rails API 端
  • 保持 MCP Server 輕量,易於維護和升級

技術棧

類別 技術 版本
Runtime Node.js 20+
Language TypeScript 5.x
MCP SDK @modelcontextprotocol/sdk 1.x
Validation Zod 3.x
Build tsup 8.x
Testing Vitest 2.x

目錄結構

slima-mcp-server/
├── src/
│   ├── api/
│   │   ├── client.ts      # Slima API Client (HTTP 請求)
│   │   ├── types.ts       # TypeScript 型別定義
│   │   └── index.ts       # 匯出
│   ├── tools/
│   │   ├── books.ts       # 書籍工具 (4 tools)
│   │   ├── content.ts     # 內容工具 (1 tool)
│   │   ├── beta-reader.ts # Beta Reader 工具 (2 tools)
│   │   ├── files.ts       # 檔案操作工具 (6 tools)
│   │   └── index.ts       # 匯出
│   ├── utils/
│   │   ├── errors.ts      # 錯誤類別和格式化
│   │   └── logger.ts      # 日誌 (輸出到 stderr)
│   ├── server.ts          # MCP Server 工廠
│   └── index.ts           # CLI 入口點
├── tests/
│   ├── api/
│   │   └── client.test.ts # API Client 測試
│   ├── tools/
│   │   ├── books.test.ts        # 書籍工具測試
│   │   ├── content.test.ts      # 內容工具測試
│   │   └── beta-reader.test.ts  # Beta Reader 測試
│   └── server.test.ts     # Server 初始化測試
├── dist/                  # 編譯輸出 (gitignored)
├── package.json
├── tsconfig.json
├── tsup.config.ts         # Build 設定 (含 shebang)
├── vitest.config.ts       # 測試設定
└── README.md              # 使用者文件

Read the full file on GitHub · 461 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. 8d ago First seen · 461 lines · 3,741 tokens per session scan A cc70786a142b

Subscribe to this mod's changes

slima-mcp CLAUDE.md is an instructions file published in the GitHub repository slima-ai/slima-mcp (1 stars, last pushed 4mo ago), licensed MIT. It adds 3,741 tokens to every session, about $0.0187 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

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

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

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