New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tdocs7

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tdocs7

MCP Server para busca em documentação com RAG-like chunking

latest
Source
npmnpm
Version
1.0.4
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

TDocs7

MCP Server for intelligent documentation search with RAG-like strategy.

What does it do?

TDocs7 is an MCP (Model Context Protocol) server that allows AI assistants (like Claude) to intelligently search your documentation.

  • Loads documentation from a configured URL
  • Splits content into semantic chunks
  • Searches and ranks the most relevant excerpts
  • Returns formatted results to the assistant

Installation

No installation required. Configure directly in your MCP client.

Via npm (global)

npm install -g tdocs7

Configuration

Claude Code

Add to your .mcp.json file:

{
  "mcpServers": {
    "tdocs7": {
      "command": "npx",
      "args": ["-y", "tdocs7"],
      "env": {
        "MCP_DOCS_URL": "https://your-api.com/docs",
        "MCP_JWT_TOKEN": "your_jwt_token"
      }
    }
  }
}

Claude Desktop

Add to the configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "tdocs7": {
      "command": "npx",
      "args": ["-y", "tdocs7"],
      "env": {
        "MCP_DOCS_URL": "https://your-api.com/docs",
        "MCP_JWT_TOKEN": "your_jwt_token"
      }
    }
  }
}

Environment Variables

VariableRequiredDescriptionDefault
MCP_DOCS_URLYesDocumentation URL-
MCP_JWT_TOKENYesJWT token for authentication-
MCP_DEFAULT_MAX_RESULTSNoNumber of results per search (1-10)3
MCP_REQUEST_TIMEOUTNoTimeout in ms10000

Available Tools

search_docs

Searches for information in the configured documentation.

Parameters:

  • search (string, required): Term or phrase to search
  • max_results (number, optional): Number of excerpts to return (1-10)

Example usage by assistant:

Searching for "authentication" in the documentation...

Development

# Clone the repository
git clone https://github.com/YOUR_USERNAME/tdocs7.git
cd tdocs7

# Install dependencies
npm install

# Configure environment variables
cp .env.example .env
# Edit the .env file with your settings

# Run in development
npm run dev

# Build
npm run build

# Lint and format
npm run lint
npm run format

Requirements

  • Node.js >= 20.0.0

License

ISC

Keywords

mcp

FAQs

Package last updated on 18 Dec 2025

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