- Home
- MCP servers
- YYSK
YYSK
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"jessieorg-yysk-mcp-server": {
"command": "node",
"args": [
"/path/to/yysk-mcp-server/dist/index.js"
]
}
}
}You can deploy and run the YYSK MCP Server to create a private, searchable knowledge base for your organization. It supports local, real-time communication via stdio and remote access via SSE, includes a modern management UI, and stores data in SQLite for fast, structured search and categorization.
How to use
You will connect an MCP client to the server to access, search, and manage internal content such as Wiki pages, rules, and notices. Use the local stdio mode for environments like Claude Desktop or your IDE-based workflow, or run the remote SSE mode to connect over HTTP(S) from your internal tooling. The management UI lets you add and organize content using Markdown, while the SQLite-backed search provides fast filtering by category and keywords.
How to install
Prerequisites: ensure Node.js is installed on your system. You will also need a compatible MCP client that can connect via stdio or SSE.
# Install dependencies
npm install
# Start the server in local stdio mode (for Claude Desktop or IDE workflows)
npm run dev
# Start the server in remote SSE mode (MCP SSE service on port 3000 and CMS on port 3001)
npm run dev -- --sse
# Start the CMS frontend in development mode (optional)
npm run cms:dev
Notes on configuration and usage
You can configure your MCP client to connect to the server using the provided example. This enables the client to launch the MCP server process and communicate via stdio.
{
"mcpServers": {
"yysk_wiki": {
"command": "node",
"args": ["/path/to/yysk-mcp-server/dist/index.js"]
}
}
}