🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@mukundakatta/citecite-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mukundakatta/citecite-mcp

MCP server for RAG citation marker [1] [2] injection, parsing, and stripping. Helps LLMs round-trip citations in retrieval-augmented outputs.

latest
Source
npmnpm
Version
0.1.1
Version published
Weekly downloads
40
66.67%
Maintainers
1
Weekly downloads
 
Created
Source

@mukundakatta/citecite-mcp

MCP server for RAG citation markers. Inject [N] markers into LLM output, parse them back when post-processing, or strip them entirely.

Tools

  • inject_citations(text, citations, at?) — append [1] [2] [3] markers at the end of text, or insert at a position offset.
  • parse_citations(text) — return every [N] found in source order with position, idx, and marker length.
  • strip_citations(text) — remove every [N] marker.

Install — Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "citecite": {
      "command": "npx",
      "args": ["-y", "@mukundakatta/citecite-mcp"]
    }
  }
}

Install — Cursor / Cline / Windsurf / Zed

Same shape in each tool's MCP config. Transport is stdio over npx -y @mukundakatta/citecite-mcp.

Use case

You ran a RAG pipeline. The LLM produced an answer. The retrieval layer told you which source chunks were used. Now the LLM (a second pass, or the same agent) needs to inject [1] [2] markers tied to those sources, or to parse markers back out of an existing piece of text. That's what this is for.

License

MIT OR Apache-2.0.

Keywords

mcp

FAQs

Package last updated on 10 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts