MCP server intelligence profile

MCP Documentation Server MCP Server

Local-first document management and semantic search for AI coding agents, with a built-in web dashboard and REST API

Local Onlyandrea9293
Awaiting current scanNpm · 1.15.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
11Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @andrea9293/mcp-documentation-server from npm

Version 1.15.3 declares 1 executable entrypoint.

npm install --save-exact @andrea9293/mcp-documentation-server@1.15.3
npx -y -p @andrea9293/mcp-documentation-server@1.15.3 @andrea9293/mcp-documentation-server
MCP client configuration example
{
  "mcpServers": {
    "@andrea9293/mcp-documentation-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@andrea9293/mcp-documentation-server@1.15.3",
        "@andrea9293/mcp-documentation-server"
      ]
    }
  }
}

Identity

Canonical slugmcp-documentation-server-fda49b5fDeploymentLocal Only
Canonical packagenpm:@andrea9293/mcp-documentation-serverRepositoryandrea9293/mcp-documentation-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@andrea9293/mcp-documentation-server1.15.325Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@andrea9293/mcp-documentation-server1.15.3CurrentSep 5, 202611 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
Documentation ServerServer-reported name
3Capability groups
Aug 14, 2026Observed

Tools 11

ToolCategoryAnnotationsRisk
add_documentAdd a new document to the knowledge base
Input schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "The title of the document"
    },
    "content": {
      "type": "string",
      "description": "The content of the document"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "additionalProperties": false,
      "description": "Optional metadata for the document"
    }
  },
  "required": [
    "title",
    "content"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
delete_documentDelete a document from the collection
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Document ID to delete"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_context_windowReturns a window of parent content sections around a central parent_index. Use parent_index values from search results. Always tell the user if result is truncated because of length.
Input schema
{
  "type": "object",
  "properties": {
    "document_id": {
      "type": "string",
      "description": "The document ID"
    },
    "parent_index": {
      "type": "number",
      "description": "The parent_index of the central section (from search results)"
    },
    "before": {
      "type": "number",
      "default": 1,
      "description": "Number of previous parent sections to include"
    },
    "after": {
      "type": "number",
      "default": 1,
      "description": "Number of next parent sections to include"
    }
  },
  "required": [
    "document_id",
    "parent_index"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_documentUse this tool only when user explicitly requests it. Retrieve a specific document by ID. Always tell the user if result is truncated because of length. for example if you recive a message like this in the response: 'Tool response was too long and was truncated'
Input schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The document ID"
    }
  },
  "required": [
    "id"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_ui_urlGet the URL of the web UI. use this tool when user ask you to access the web interface, when the user ask you to upload a file or when the user ask you the uploads folder path. All these function are available in the web UI.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_uploads_pathGet the absolute path to the uploads folder where you can manually place .txt and .md files
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_documentsList all documents in the knowledge base
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
list_uploads_filesList all files in the uploads folder with their details
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
process_uploadsProcess all .txt and .md files in the uploads folder and create embeddings for them
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
search_all_documentsSearch for relevant chunks across ALL documents in the knowledge base using semantic similarity (hybrid: full-text + vector). Useful for cross-document search when you don't know which document contains the answer.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "The search query"
    },
    "limit": {
      "type": "number",
      "default": 10,
      "description": "Maximum number of chunk results to return"
    }
  },
  "required": [
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
search_documentsSearch for chunks within a specific document using semantic similarity. Always tell the user if result is truncated because of length. for example if you recive a message like this in the response: 'Tool response was too long and was truncated'
Input schema
{
  "type": "object",
  "properties": {
    "document_id": {
      "type": "string",
      "description": "The ID of the document to search within"
    },
    "query": {
      "type": "string",
      "description": "The search query"
    },
    "limit": {
      "type": "number",
      "default": 10,
      "description": "Maximum number of chunk results to return"
    }
  },
  "required": [
    "document_id",
    "query"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

MCP Documentation Server MCP Server questions

How do I install MCP Documentation Server MCP Server?

Install the selected package version with: npm install --save-exact @andrea9293/mcp-documentation-server@1.15.3

What tools does MCP Documentation Server MCP Server provide?

MCP Documentation Server MCP Server exposed 11 tools during independent protocol observation, including add_document, delete_document, get_context_window, get_document, get_ui_url, get_uploads_path, list_documents, list_uploads_files, and others.

Is MCP Documentation Server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Developer Tool MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.