- Home
- MCP servers
- SaaSus Docs
SaaSus Docs
- typescript
1
GitHub Stars
typescript
Language
6 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": {
"saasus-platform-saasus-docs-mcp-server": {
"command": "/path/to/node",
"args": [
"/path/to/server.js"
]
}
}
}You run an MCP server that exposes tools to search SaaSus Platform documents, fetch article content, and list all document URLs. This enables MCP-compatible clients like Claude Desktop and Cursor to query and retrieve SaaSus docs efficiently from your own instance.
How to use
You connect MCP clients to the server using the standard MCP configuration you set up on your device. Once connected, you can perform three core actions: search for document URLs, fetch full article content from a given URL, and obtain a sitemap of all SaaSus Platform document pages. Use the saasus-docs-search-urls tool to find relevant articles, then pass those results to saasus-docs-get-content to retrieve complete article content. If you want a broad view of all available document pages, use saasus-docs-sitemap.
How to install
Prerequisites you need before installing the MCP server are Node.js (version 22 recommended) and npm (which is included with Node). Install steps below assume you have a Unix-like environment with git available.
Clone the repository and install dependencies, then build the project to generate the runtime server.
# 1. Clone the repository
git clone https://github.com/saasus-platform/saasus-docs-mcp-server.git
cd saasus-docs-mcp-server
# 2. Install dependencies
npm install
# 3. Build the project (produces server.js at the root)
npm run build
Additional notes
Configuration and startup details below show how to connect from different MCP clients. These examples assume you keep the runtime files in their expected locations and you replace placeholders with your actual paths.
Configuration for MCP clients
Use the following configurations in each client to point to your local MCP server. The server is started locally with a Node.js process running server.js.
Claude Desktop configuration
Add a server configuration in Claude Desktop under Settings → Development → Configure. Provide the Node runtime path and the server script path.
{
"mcpServers": {
"saasus_docs": {
"command": "/path/to/node",
"args": [
"/path/to/server.js"
]
}
}
}
Claude Code (CLI) configuration
Register the MCP server from the command line using the Claude Code CLI.
claude mcp add --scope user saasus-docs-mcp-server /path/to/node /path/to/server.js
Cursor configuration
Open the Cursor settings and add a new MCP server entry in the MCP section with the same runtime details.
{
"mcpServers": {
"saasus_docs": {
"command": "/path/to/node",
"args": [
"/path/to/server.js"
]
}
}
}
Available tools
saasus-docs-search-urls
Search SaaSus Platform documents to retrieve related article URLs.
saasus-docs-get-content
Fetch complete content of a SaaSus Platform document article from a given URL.
saasus-docs-sitemap
Retrieve a list of all document page URLs from the SaaSus Platform sitemap.