Lspace-io/lspace-server
If you are the rightful owner of lspace-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Model Context Protocol (MCP) server facilitates the integration of AI agents and tools with managed content repositories, enabling intelligent knowledge base generation and management.
The Model Context Protocol (MCP) server is a backend solution designed to streamline the integration of AI-driven knowledge management into various workflows. By implementing the MCP, the server allows developers to connect AI agents and other tools to content repositories, transforming scattered conversations and insights into a cohesive, searchable knowledge base. This open-source server supports the orchestration of AI tasks such as document classification, organization, and summarization, making it a powerful tool for creating and managing knowledge bases. The server's architecture is extensible, allowing for custom integrations and adaptations to specific use cases. With support for multiple repository types, including local and GitHub, the MCP server provides a flexible and robust platform for knowledge management.
Features
- Self-hostable service for git operations, search, and LLM integration.
- Implements the Model Context Protocol (MCP) for programmatic interaction with AI agents and tools.
- Supports multi-repository management with local and GitHub repositories.
- Facilitates AI orchestration for document classification, organization, and summarization.
- Enables knowledge base generation with a dual-structure repository architecture.
Usages
usage with cursor
{ "mcpServers": { "lspace-knowledge-base": { "command": "node", "args": ["/actual/absolute/path/to/your/lspace-server/lspace-mcp-server.js"], "env": { // .env file in lspace-server directory should be picked up automatically. // Only add environment variables here if you need to override them // specifically for Cursor, or if the .env file is not found. // "OPENAI_API_KEY": "your_openai_key_if_not_in_lspace_env" } } } }
usage with claude desktop
{ "mcpServers": { "lspace": { "command": "node", "args": ["/actual/absolute/path/to/your/lspace-server/lspace-mcp-server.js"] // "env": { ... } // Similar environment variable considerations as with Cursor } } }