Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sage MCPFind recent research papers about machine learning interpretability"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sage MCP - Academic Research Server
An MCP (Model Context Protocol) server that provides LLMs with access to academic papers and periodicals for research-grounded responses.
Features
Full-text search across papers using SQLite FTS5
Topic/publication filtering for targeted research
Paper retrieval with full content for detailed analysis
Extensible database - add your own papers programmatically
Tools Available
Tool | Description |
| Semantic/keyword search across all papers |
| Retrieve full paper content by ID |
| Browse available research topics |
| Browse available journals/sources |
| Filter papers by topic |
| Filter papers by journal |
| Add new papers to the database |
Quick Start (Local Setup)
Prerequisites
Node.js 18+ (recommended: 20 LTS)
npm 9+
1. Clone/Download and Install
2. Seed the Database
3. Verify Installation
Connecting to MCP Clients
Claude Desktop (Windows)
Locate config file:
%APPDATA%\Claude\claude_desktop_config.jsonUsually:
C:\Users\<YourName>\AppData\Roaming\Claude\claude_desktop_config.jsonEdit the config (create if doesn't exist):
{ "mcpServers": { "sage": { "command": "node", "args": ["C:/AIapps/SageMCP/dist/index.js"] } } }Restart Claude Desktop completely (quit from system tray, reopen)
Verify connection: Look for the hammer 🔨 icon in Claude's chat input - click it to see available tools
Claude Desktop (macOS)
Config location:
~/Library/Application Support/Claude/claude_desktop_config.jsonConfig content:
{ "mcpServers": { "sage": { "command": "node", "args": ["/Users/<you>/path/to/SageMCP/dist/index.js"] } } }
Windsurf / Cascade
Add to your MCP settings (Settings → MCP Servers):
Cline (VS Code Extension)
Open VS Code settings
Search for "Cline MCP"
Add server configuration:
{ "sage": { "command": "node", "args": ["C:/AIapps/SageMCP/dist/index.js"] } }
Custom MCP Client (Programmatic)
Configuration
Environment Variables
Variable | Description | Default |
| Custom database file path |
|
Example with custom DB path:
Adding Your Own Papers
Via the MCP Tool
LLMs can use the add_paper tool directly to add papers.
Via XML Import
Place your XML file in data/ and run:
Programmatically
Database Schema
Papers are stored in SQLite with full-text search indexing:
Field | Type | Description |
| INTEGER | Auto-incrementing primary key |
| TEXT | Paper title |
| TEXT | Comma-separated author list |
| TEXT | Paper abstract |
| TEXT | Full paper text |
| TEXT | Journal/conference name |
| TEXT | Publication date (YYYY-MM-DD) |
| TEXT | DOI identifier (optional) |
| TEXT | URL to paper (optional) |
| TEXT | Comma-separated topics |
| TEXT | Comma-separated keywords |
VPS Deployment
Single command deploys everything (from your local machine):
This automatically:
Installs Node.js and dependencies on VPS
Creates
sageuser and directoriesCopies source files and database
Builds the project
Sets up and starts systemd service
Uninstall:
See deploy/README.md for detailed options and troubleshooting.
Troubleshooting
"Cannot find module" errors
Claude Desktop doesn't show tools
Check config JSON syntax (use a JSON validator)
Ensure path uses forward slashes:
C:/path/to/filenotC:\path\to\fileRestart Claude Desktop completely (quit from system tray)
Check Claude's logs:
%APPDATA%\Claude\logs\
Database errors
Test MCP server manually
License
MIT