Skills-MCP-Server
Verified Safeby Polaralias
Overview
A server that exposes a collection of markdown-based skills as Model Context Protocol (MCP) prompts and resources, enabling LLMs to access specialized knowledge and workflows.
Installation
TRANSPORT=http npx tsx src/index.tsEnvironment Variables
- TRANSPORT
- PORT
- ROOT_DIR
Security Notes
The server uses `cors` with `origin: "*"`, which allows requests from any origin. While common for public APIs, this means cross-origin requests are unrestricted. It relies on the integrity of local skill manifest, prompt, and resource files (`fs.readFile`). Assuming these files are trusted and the host environment is secure against file tampering, the risk is mitigated. No `eval`, dynamic untrusted code execution, or obvious command injection vulnerabilities were found in the provided source.
Similar Servers
mcp-servers
A curated collection of Model Context Protocol (MCP) server configurations to integrate various developer tools and services with AI agents.
git-mcp-server
A Model Context Protocol (MCP) server that provides Git-specific tools and resources for AI/LLM agents to interact with version control systems.
mcp_server
This server implements the Model Context Protocol (MCP) to expose developer-defined tools as a HTTP API, specifically demonstrating a task creation tool.
awesome-agent-tools
The repository provides a curated collection of AI agent skills and development resources, including documentation and tutorials for building Model Context Protocol (MCP) servers, although no original MCP server implementation is currently present in the source code.