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 skills/starsmilky/mcpcodeintelligence/mcp-code-intelligencenpx skills add StarsMilky/MCPCodeIntelligence --skill mcp-code-intelligencegit clone --depth 1 https://github.com/StarsMilky/MCPCodeIntelligenceWhat 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 | $0.00124 | $0.03332 |
| Opus 5 | $0.00062 | $0.01666 |
| Sonnet 5 | $0.00025 | $0.00666 |
| Haiku 4.5 | $0.00012 | $0.00333 |
Grade A, and why
mcp-code-intel 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 yesterday.
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 — 285 lines — stays where its author put it; the contents beside it link to each section on GitHub.
MCP Code Intelligence
13 IDE-level tools for AI agents. Always prefer these over CLI equivalents.
Every tool response includes a nextAction hint suggesting the best follow-up call — use it to chain tools.
Quick Reference
| Task | Tool Call |
|---|---|
| Find a symbol by name | find_symbol(name="UserRepository", kind="CLASS") |
| Find a symbol by FQN | find_symbol(name="com.example.UserRepository") |
| What type is this? | resolve_symbol(file, line, column) |
| Who uses this symbol? (by name) | find_references(qualified_name="com.example.Foo", mode="USAGES") |
| Who uses this symbol? (by pos) | find_references(file, line, col, mode="USAGES") |
| Who calls this method? | find_references(qualified_name="com.Foo.bar", mode="CALLERS", depth=3) |
| What does this method call? | find_references(file, line, col, mode="CALLEES") |
| Class hierarchy | find_references(qualified_name="com.Foo", mode="TYPE_HIERARCHY") |
| Symbols at cursor | get_scope(file, line, col, filter="ALL") |
| Project overview | query_project(mode="OVERVIEW") |
| Dependency impact | query_project(mode="DEPENDENCY", target_class="com.Foo") |
| Framework details | query_framework(framework="ROOM", detail_target="UserEntity") |
| Null safety check | analyze_data_flow(file, line, col, mode="NULLABILITY") |
| Value tracing | analyze_data_flow(file, line, col, mode="BACKWARD") |
| Quality hotspots | analyze_quality(mode="COMPLEXITY", top_n=10) |
| Architecture rules | check_rules(rules=[...]) |
| Pattern search | structural_search(pattern="@Composable fun $X$") |
| Rename safely | refactor(operation="RENAME", file, line, col, new_name="New") |
| Create checkpoint | checkpoint(operation="CREATE", label="before-fix") |
| Decompile class | sandbox(operation="DECOMPILE", qualified_class_name="...") |
Critical Rules
- NEVER use
grep/rgfor code references →find_references(mode="USAGES") - NEVER use
grep/rgto locate a symbol →find_symbol(name="SymbolName") - NEVER guess types →
resolve_symbol(file, line, column) - NEVER use
sed/text-replace for renaming →refactor(operation="RENAME") - NEVER start multi-file changes without →
checkpoint(operation="CREATE") - ALWAYS start with
query_project(mode="OVERVIEW")on a new project - ALWAYS use
find_symbol(name=...)to locate symbols instead of grep - All enum values are UPPERCASE:
"USAGES","RENAME","OVERVIEW", not"usages" find_referencesaccepts two entry modes:file+line+column(position) ORqualified_name(name-based).resolve_symbolis position-only — usefind_symbolfor name-based lookup.
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.
- yesterday First seen · 285 lines · 124 tokens per session scan A 67caa1b31696
mcp-code-intel is a skill published in the GitHub repository StarsMilky/MCPCodeIntelligence (2 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 124 tokens to every session and 3,332 once invoked, about $0.0006 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 skills, from other repositories
orca-emulator-android
Control an Android emulator / device from inside Orca using the orca CLI. Use for listing/booting AVDs, taps, swipes, typing, hardware buttons (incl. Back and Recents), rotation, app install/launch, runtime permissions, the accessibility tree, and logcat — driving a real adb-connected device or emulator.…
speckit-analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
add-sample
Create a SamplesApp sample page with correct theming and attributes. Use when adding UI samples for controls.
mapping-to-snomed
Maps clinical concept spans extracted by OpenMed to SNOMED CT concepts through a USER-SUPPLIED terminology server (the user's own Ontoserver, Snowstorm, or UMLS/UTS), never a bundled vocabulary. Use when the user wants to code findings, disorders, procedures, body structures, or substances to SNOMED CT, run an ECL…
android-tombstone-symbolication
Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app…
auditing-subgroup-fairness
Audit an OpenMed NER or de-identification model for performance disparities across demographic subgroups (sex, age band, race/ethnicity when available) using openmed.eval.fairnessreport. Use when the user wants per-subgroup recall and leakage, wants to check whether de-identification under-protects a group, wants to…