Dsr MCP Server MCP Server

An MCP server that provides tools for interacting with Deep State Representation (DSR) graphs.

Local serverstdioPython

What is the Dsr MCP Server MCP server?

An MCP server that provides tools for interacting with Deep State Representation (DSR) graphs. Exposed over MCP by the dsr mcp server mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

An MCP (Model Context Protocol) server that provides a comprehensive set of tools to query, manipulate, and analyze Deep State Representation (DSR) graphs. This server enables AI assistants to interact with robot perception and scene understanding data through standardized MCP tools with real-time graph operations and intelligent node relationship management.

Its toolset

Everything the assistant can do here goes through one of these:

  • check_dsr_connection — Check DSR connection and return status information
  • get_all_nodes — Retrieve all nodes from the DSR graph
  • get_nodes_by_type — Filter nodes by their type (e.g., robot, person, room)
  • get_node_details — Get detailed information about a specific node including attributes and edges
  • get_all_edges — Retrieve all edges from the DSR graph
  • insert_node — Insert a new node into the DSR graph
  • insert_edge — Insert a new edge between two nodes in the DSR graph
  • insert_edge_attribute — Insert or update an attribute for an edge in the DSR graph
  • update_node — Update a node with new attributes in the DSR graph
  • delete_node — Delete a node from the DSR graph
  • delete_edge — Delete an edge from the DSR graph
  • save_graph — Save the current state of the DSR graph to a JSON file

Configuration

You will need 3 environment variables: DSR_AGENT_ID, DSR_NAME, SERVER_HOST. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at the on PyPI and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Dsr MCP Server's toolset — check_dsr_connection, get_all_nodes, get_nodes_by_type and 11 more — is a fair guide to whether it matches your workflow. It is maintained by grupo-avispa; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Dsr MCP Server's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Dsr MCP Server.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the dsr mcp server mcp server does with a few real requests.

Available tools

ToolWhat it does
check_dsr_connectionCheck DSR connection and return status information
get_all_nodesRetrieve all nodes from the DSR graph
get_nodes_by_typeFilter nodes by their type (e.g., robot, person, room)
get_node_detailsGet detailed information about a specific node including attributes and edges
get_all_edgesRetrieve all edges from the DSR graph
insert_nodeInsert a new node into the DSR graph
insert_edgeInsert a new edge between two nodes in the DSR graph
insert_edge_attributeInsert or update an attribute for an edge in the DSR graph
update_nodeUpdate a node with new attributes in the DSR graph
delete_nodeDelete a node from the DSR graph
delete_edgeDelete an edge from the DSR graph
save_graphSave the current state of the DSR graph to a JSON file
ToolsThe Tools tool exposed by this server.
ResourcesResources provide read-only, efficient access to DSR graph data. They are ideal for querying information without modifying the graph state.

How to install the Dsr MCP Server MCP server

{
  "mcpServers": {
    "dsr": {
      "command": "uvx",
      "args": ["the"],
      "env": {
        "DSR_AGENT_ID": "your-value",
        "DSR_NAME": "your-value",
        "SERVER_HOST": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
DSR_AGENT_IDConfiguration value read at startup.Optional
DSR_NAMEConfiguration value read at startup.Optional
SERVER_HOSTEndpoint or connection string the server talks to.Optional

Example prompts to try

  • Use Dsr MCP Server to check dsr connection.
  • Use Dsr MCP Server to get all nodes.
  • Use Dsr MCP Server to get nodes by type.

Frequently asked questions

It connects Dsr MCP Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (check_dsr_connection, get_all_nodes, get_nodes_by_type, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Dsr MCP Server directly.