1. Conduid
  2. Developer Tools
  3. R mcptools
MCP server · Developer Tools

R mcptools

Model Context Protocol For R

Unclaimed NOASSERTION last commit 10 months ago mcp-serverrai
77Good

Scored 3 hours ago · breakdown

About R mcptools

R mcptools is an MCP server published by posit-dev in the Developer Tools category: model Context Protocol For R. It has been installed 0 times through Conduid.

The repository has 159 stars and 14 forks, with the last commit 10 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx mcptools

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about R mcptools

Powered by Claude · Grounded in docs

I know everything about R mcptools. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.2mcptools 1.0.2 · 22 Aug 2026Only an internal testing change that addresses a temp directory cleanup NOTE.
v1.0.1mcptools 1.0.1 · 27 Jul 2026This release includes several security-oriented fixes, in addition to a couple quality of life improvements for multi-user and multi-session workspaces: The server now chooses its R session at tool-call time rather than always connecting…
v1.0.0mcptools 1.0.0 · 5 Jul 2026`mcp_server()` New features**: mcptools can now run as a Posit Connect R API engine. Add a `_server.yml` with `engine: mcptools`, point `tools` to an `.R` file returning `ellmer::tool()` objects, and deploy with `rsconnect::deployAPI(".",…
v0.2.1mcptools 0.2.1 · 17 Mar 2026`mcp_server()` now ensures that `inputSchema` always includes a `properties` field, even for tools with no arguments (#91 by @itkonen). `mcp_server()` now negotiates the protocol version with clients, supporting versions 2024-11-05 through…
v0.2.0mcptools 0.2.0 · 29 Oct 2025Server `mcp_server()` now supports HTTP transport in addition to stdio. Use `type = "http"` to start an HTTP server, with optional `host` and `port` arguments. For now, the implementation is authless. `mcp_server()` now formats tool…

README

mcptools

CRAN
status R-CMD-check

mcptools implements the Model Context Protocol in R. There are two sides to mcptools:

R as an MCP server:

When configured with mcptools, MCP-enabled tools like Claude Desktop, Claude Code, and VS Code GitHub Copilot can run R code in the sessions you have running to answer your questions. While the package supports configuring arbitrary R functions, you may be interested in the btw package’s integrated support for mcptools, which provides a default set of tools to to peruse the documentation of packages you have installed, check out the objects in your global environment, and retrieve metadata about your session and platform.

R as an MCP client:

Register third-party MCP servers with ellmer chats to integrate additional context into e.g. shinychat and querychat apps.

NOTE:

This package used to be called acquaint and supplied a default set of tools from btw when R was used as an MCP server. The direction of the dependency has been reversed; to use the same functionality from before, transition acquaint::mcp_server() to btw::btw_mcp_server() and acquaint::mcp_session() to btw::btw_mcp_session().

Installation

Install mcptools from CRAN with:

install.packages("mcptools")

You can install the development version of mcptools like so:

pak::pak("posit-dev/mcptools")

R as an MCP server

mcptools can be hooked up to any application that supports MCP. For example, to use with Claude Desktop, you might paste the following in your Claude Desktop configuration (on macOS, at ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "r-mcptools": {
      "command": "Rscript",
      "args": ["-e", "mcptools::mcp_server()"]
    }
  }
}

Or, to use with Claude Code, you might type in a terminal:

claude mcp add -s "user" r-mcptools -- Rscript -e "mcptools::mcp_server()"

Then, if you’d like models to access variables in specific R sessions, call mcptools::mcp_session() in those sessions. (You might include a call to this function in your .Rprofile, perhaps using usethis::edit_r_profile(), to automatically register every session you start up.)

R as an MCP client

mcptools uses the Claude Desktop configuration file format to register third-party MCP servers, as most MCP servers provide setup instructions for Claude Desktop in their documentation. For example, here’s what the official GitHub MCP server configuration would look like:

{
  "mcpServers": {
    "github": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GITHUB_PERSONAL_ACCESS_TOKEN",
        "ghcr.io/github/github-mcp-server"
      ],
      "env": {
        "GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
      }
    }
  }
}

Once the configuration file has been created (by default, mcptools will look to file.path("~", ".config", "mcptools", "config.json")), mcp_tools() will return a list of ellmer tools which you can pass directly to the $set_tools() method from ellmer:

ch <- ellmer::chat_anthropic()
ch$set_tools(mcp_tools())

ch$chat("What issues are open on posit-dev/mcptools?")

Example

In Claude Desktop, I’ll write the following:

“From what year is the earliest recorded sample in the forested data in my Positron session?”

Without mcptools, Claude couldn’t get far here; by default, it can’t run R code and doesn’t have any way to “speak to” my interactive R sessions.

Using the package, the model asks to describe the data frame using a structure that will show summary statistics from the data. mcptools will appropriately route the request to the open Positron session, forwarding the results back to the model for it to situate in a response.

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About R mcptools

How do I install R mcptools?

Run npx mcptools, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is R mcptools safe to use with an AI agent?

Its trust score is 77 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is R mcptools still maintained?

Yes — the latest release is v1.0.2 (22 Aug 2026), and the last commit was 10 months ago. The repository has 159 stars and 0 open issues.