MCP Server
semo94
README
MCP Server
A Model Context Protocol (MCP) server implementation using Node.js and TypeScript.
What is MCP?
The Model Context Protocol (MCP) is an open protocol that standardizes how applications provide context to LLMs (Large Language Models). It allows for seamless communication between AI applications and various data sources and tools.
Features
This server implementation provides:
- Cross-document search tool for retrieving relevant information
- Document management with document listing and metadata resources
- Document Q&A prompt template for answering questions about documents
- Support for both stdio and SSE transport methods
- Comprehensive logging system
- Configuration via environment variables
Getting Started
Prerequisites
- Node.js 18+ and npm
Installation
- Clone the repository
- Install dependencies:
npm install
- Build the project:
npm run build
Running the Server
Using stdio (for integration with MCP clients)
npm start
Using SSE (for web-based usage)
npm start -- --transport=sse
The server will start on port 3000 by default. You can change this by setting the PORT
environment variable or using the port argument:
npm start -- --transport=sse --port=8080
Or:
PORT=8080 npm start -- --transport=sse
API
Tools
cross_document_search
: Search across documents for relevant information- Parameters:
query
(string): The search querymax_results
(number, default: 5): Maximum number of results to return
- Parameters:
Resources
documents://list
: Get a list of available documentsdocument://{id}
: Get metadata for a specific document
Prompts
document_qa
: Q&A about document content- Parameters:
document_id
(string): The ID of the document to queryquestion
(string): The question to ask about the document
- Parameters:
Configuration
The server can be configured through environment variables:
SERVER_NAME
: Name of the server (default: "document-archive-mcp-server")SERVER_VERSION
: Server version (default: "1.0.0")ENABLE_RESOURCES
: Enable/disable resources (default: true)ENABLE_TOOLS
: Enable/disable tools (default: true)ENABLE_PROMPTS
: Enable/disable prompts (default: true)PORT
: Default port for SSE transport (default: 3000)TRANSPORT_TYPE
: Default transport type (default: "stdio")LOG_LEVEL
: Log level (default: "info")LOG_DIR
: Directory for log files (default: "logs")LOG_FILE
: Main log file name (default: "combined.log")ERROR_LOG_FILE
: Error log file name (default: "error.log")ENABLE_FILE_LOGGING
: Enable file logging (default: true in production, false in development)
Development
To run the server in development mode with auto-reloading:
npm run dev
For SSE transport in development mode:
npm run dev -- --transport=sse
License
ISC
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.
Jira-Context-MCP
MCP server to provide Jira Tickets information to AI coding agents like Cursor

Linear MCP Server
A Model Context Protocol server that integrates with Linear's issue tracking system, allowing LLMs to create, update, search, and comment on Linear issues through natural language interactions.

Sequential Thinking MCP Server
This server facilitates structured problem-solving by breaking down complex issues into sequential steps, supporting revisions, and enabling multiple solution paths through full MCP integration.