Folderr MCP Server

A Model Context Protocol server

Local serverstdioTypeScript

What is the Folderr MCP server?

Folderr mcp server connects Folderr to AI assistants that speak the Model Context Protocol. A Model Context Protocol server.

What Folderr does

A Model Context Protocol (MCP) server that provides tools to interact with Folderr's API, specifically for managing and communicating with Folderr Assistants.

Tools it exposes

Once connected, the assistant can call this tool directly:

  • Authentication — 1. Login with Email/Password typescript { "name": "login", "arguments": { "email": "user@example.com", "password": "your-password" } }

Installing the folderr mcp server

The server is distributed via npm as npm, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Where it fits

Communication servers earn their keep on volume — summarising channels and threads that would otherwise cost you an hour of scrollback. Folderr sits in that group, and the shape of its toolset — Authentication — tells you what it is really for. Worth comparing against the other communication servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • Maintained by folderr-tech, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the folderr mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Authentication1. **Login with Email/Password** typescript { "name": "login", "arguments": { "email": "user@example.com", "password": "your-password" } }

How to install the Folderr MCP server

{
  "mcpServers": {
    "folderr": {
      "command": "npx",
      "args": ["-y", "@folderr/folderr-mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Folderr to Authentication.

Frequently asked questions

It connects Folderr to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Authentication) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Folderr directly.