Skip to main content
Glama
richarda23

RSpace MCP Server

by richarda23

RSpace MCP server

This is a proof-of-principle MCP server for RSpace. It exposes some RSpace API endpoints to LLM agents using the Model Context Protocol.

To run, install uv and python, then add this to your Claude or VS Code mcp.json

  • clone this repo

  • run uv sync to install dependencies

  • create a .env file in this folder. Add

    • RSPACE_URL=RSpace URL # e.g. https://community.researchspace.com

    • RSPACE_API_KEY=your API key

Configure your LLM app. Below is config for VSCode Copilot.

For Claude Desktop add the "rspace" server definition below to your MCP config file.

{
  "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}"
      }
    }
  }
}
A
license - permissive license
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/richarda23/rspace-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server