Jane
About
A knowledge management server for stdlib and specs documents, with a configurable storage path.
Details
- Author
- quinncuatro
- Categories
- Productivity, Knowledge Base, Other
Jump to
Setup
Install Jane in your MCP client (Claude Desktop, Cursor, Windsurf, and others).
Repository: https://github.com/quinncuatro/jane-mcp-server
Follow the installation instructions in the repository README, then restart your MCP client.
Jane - Knowledge Management for AI Teams
Jane is a Model Context Protocol (MCP) server that transforms your team's documentation into an AI-accessible knowledge base. Built with TypeScript and the official MCP SDK, Jane allows Claude and other MCP-compatible clients to search, access, and manage your standard library documentation and project specifications with SQLite-powered performance.
Perfect for development teams who want to:
- π Make their documentation instantly searchable by AI assistants
- π Quickly find APIs, coding standards, and architectural decisions
- π Keep project specifications and requirements accessible
- π Onboard new team members faster with searchable knowledge
- Node.js 18+andnpm 8+
- MCP-compatible client: Claude Desktop, Claude Code, or custom MCP client
- 5 minutesfor setup and first successful query
Get Jane running with your first successful query in 3 steps:
git clone <repository-url> cd jane-mcp-server npm install npm run build
β
You should see:"Jane MCP server is running and ready for connections"
PressCtrl+Cto stop when you see this message.
Add Jane to your Claude Desktop configuration:
macOS:~/Library/Application Support/Claude/claude_desktop_config.json
Windows:%APPDATA%\Claude\claude_desktop_config.json
Linux:~/.config/Claude/claude_desktop_config.json
{ "mcpServers": { "jane": { "command": "node", "args": ["/absolute/path/to/jane-mcp-server/dist/index.js"] } } }
Important:Replace/absolute/path/to/jane-mcp-server/dist/index.jswith your actual absolute path.
Restart Claude Desktop and look for the π (attachment) icon in the input field to access Jane's tools.
- π Smart Document Search: SQLite-powered full-text search with intelligent indexing that only processes new/modified documents
- π€ AI-Native Integration: Seamlessly works with Claude Desktop, Claude Code, and custom MCP clients
- π Performance Optimized: Context window preservation through efficient SQLite database storage
- π Flexible Organization: Supports both standard library docs and project specifications
- β‘ Zero Configuration: Works out of the box with sensible defaults and automatic setup
"Search for authentication endpoints in our API docs" β Jane finds and returns relevant REST API specifications
"Show me our coding standards for TypeScript" β Jane retrieves team-specific development guidelines
"Find the database schema requirements for the user service" β Jane searches project specs and returns architecture details
- Standard Library Docs(stdlib): Language-specific documentation (JavaScript, TypeScript, Python, etc.)
- Project Specifications(specs): Requirements, architecture docs, API specs, team guidelines
Jane provides 7 MCP tools for comprehensive document management:
- list_stdlibs- Browse available programming languages and their documentation
- list_specs- Explore your project specifications and technical docs
- search- Full-text search across all documents with filtering options
- get_stdlib- Retrieve specific standard library documentation
- get_spec- Access project specifications and technical documents
- create_document- Add new documentation with structured metadata
- update_document- Modify existing documents and their metadata
pwd # Copy the output, you'll need: /that/path/dist/index.js
Update Claude Desktop configwith the JSON above
Restart Claude Desktop completely(quit and reopen)
- Look for the π icon in the input area
- Select "jane" from the MCP servers dropdown
- Try: "List available standard libraries"
Add Jane as an MCP server to Claude Code:
# Add Jane MCP server to Claude Code claude mcp add jane node /absolute/path/to/jane-mcp-server/dist/index.js # Start Claude Code interactive session claude
# List configured MCP servers claude mcp list # Test Jane integration > /mcp # Select "jane" from the interactive menu to verify connection
Jane organizes documents in a clear hierarchy:
Jane/ βββ stdlib/ # Standard library documentation β βββ javascript/ # Language-specific folders β βββ typescript/ β βββ python/ βββ specs/ # Project specifications βββ project1/ # Project-specific folders βββ project2/
- Location:./document-index.db(automatically created)
- Technology: SQLite FTS5 for full-text search
- Smart Indexing: Only processes new/modified documents on startup
- Performance: Maintains document metadata and content for fast queries
All documents use Markdown with YAML frontmatter:
--- title: "Document Title" description: "Brief description" author: "Author Name" tags: ["tag1", "tag2"] --- # Document Content Your markdown content here...
For teams who want to keep their documentation private and separate from the MCP server repository:
# Create your private Jane documents directory mkdir -p ~/Documents/Jane/{stdlib,specs} # Remove default Jane directory (if it exists) rm -rf ~/dev/jane-mcp-server/Jane # Create symlink from MCP server to your private docs ln -s ~/Documents/Jane ~/dev/jane-mcp-server/Jane
- Privacy: Keep your docs separate from the open-source MCP server
- Backup: Back up docs independently from the server code
- Team Sharing: Share docs privately while using the same server setup
- Git Cleanliness: Avoid committing sensitive documentation to the MCP server repo
After setting up the symlink, Jane will automatically use your private documents from~/Documents/Janewhile the server accesses them through the symlink. You can add.gitignoreentry forJane/to prevent accidentally committing your private docs.
# Development mode with hot reload npm run dev # Run tests npm test # Lint code npm run lint # Check SQLite database sqlite3 document-index.db "SELECT COUNT() FROM documents;"
π« "Jane server not appearing in MCP list"
- Verify the absolute path in your Claude Desktop config
- Ensure Node.js is accessible:node --version
- Restart Claude Desktop completely
- Check server builds successfully:npm run build
- Verify Jane directory exists:ls -la Jane/
- Check file permissions are readable
- Run diagnostics:npx tsx tests/jane-diagnostics.ts
- Check database permissions in project directory
- Reset database:rm document-index.db && npm start
- Verify disk space availability
π« "Document appears in search but not retrievable"
- Document exists in SQLite index but not on filesystem
- Run:npm startto resync database with filesystem
- Check for file permission issues
# Test server startup timeout 10s npm start echo $? # Should be 124 (timeout) for successful startup # Run comprehensive diagnostics npx tsx tests/jane-diagnostics.ts # Inspect SQLite database sqlite3 document-index.db ".tables" sqlite3 document-index.db "SELECT type, path, title FROM documents LIMIT 10;" # Check document structure find Jane/ -name ".md" | head -5
- Integration Issues: Check the integration guide for your specific MCP client
- Performance Problems: Review the SQLite configuration and document indexing
- Document Management: See the MCP tools reference and usage examples
Official Notion MCP server for searching, reading, creating, and updating Notion pages, databases, and workspace content from AI agents.
MCP server for Apple Notes with semantic search and CRUD operations. Claude searches, reads, creates, updates, and manages your Apple Notes through natural language.
Markdown-first Notion MCP server with 9 composite tools, 39 actions, and ~77% token reduction via tiered docs.
AI-powered reading triage MCP. 26 tools with a 24h burn timer. Read less, absorb more.
Integrates Model Context Protocol (MCP) with Obsidian, allowing AI assistants to interact with your notes and vault.
An MCP server that enables AI assistants to interact with Confluence content through a standardized interface.
An MCP server for document ingestion, chunking, semantic search, and note management.
Remote MCP server for Docsie video-to-docs automation and workspace knowledge search.
An AI-powered documentation management system with hierarchical context management and session continuity.
Search, cite, and read PDFs from your EndNote reference library directly in Claude Desktop
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





