
RSpace MCP Server
A proof-of-concept server that enables LLM agents to interact with RSpace API endpoints using the Model Context Protocol, allowing AI assistants to access and manipulate research data in RSpace.
README
RSpace MCP server
This is a proof-of-concept MCP server for RSpace that runs locally on your machine. It uses the RSpace Python client and exposes some RSpace API endpoints to LLM agents using the Model Context Protocol.
Installation and configuration
- Clone or download this repository to your local machine
- Install
uv
andpython
- Run
uv sync
to install dependencies - Create a
.env
file in the same folder and addRSPACE_URL=RSpace URL # e.g. https://community.researchspace.com RSPACE_API_KEY=your API key
- Connect your LLM app with the RSpace MCP server
-
For VS Code Copilot, add an mcp.json with the following content
{ "inputs": [ { "type": "promptString", "id": "rspace-apikey", "description": "RSpace API Key", "password": true }, { "type": "promptString", "id": "rspace-url", "description": "RSpace base URL", "password": false } ], "servers": { "rspace": { "command": "uv", "args": [ "--directory", "<full path to this directory>", "run", "main.py" ], "env": { "RSPACE_API_KEY": "${input:rspace-apikey}", "RSPACE_URL": "${input:rspace-url}" } } } }
-
For Claude Desktop, add a claude_desktop_config.json with the following content:
{ "mcpServers": { "rspace": { "command": "/Users/tilomathes/.local/bin/uv", "args": [ "--directory", "<full path to this directory>", "run", "main.py" ], "env": {} } } }
-
Using the RSpace through the MCP server
Please bear in mind that this is a proof of concept and your production use case might require a more specific MCP server configured with specifically fine-tuned tools. The tools provided here in this prototype ...
- do not exhaustively feature the functionality currently available through the RSpace Python client
- might be more than you need for your use case
- might not be optimally configured for how you would like to interact with RSpace
We're curious to learn about how you (want to) use this solution, so let us know about your experiences and learnings or contribute them directly to this repository.
Use cases and applications
You can find descriptions of some usecases and examples in the examples folder and we're looking forward to hearing about new examples and learnings. If you have an experience to share, feel free to contribute.
Contributing new Tools
If you develop new tools or toolsets, feel free to share code snippets or entire tool sets in the tools folder with appropriate annotations.
Acknowledgements
This project is based on code originally created by richarda23.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.