
FolderrOfficial
A Model Context Protocol (MCP) server that provides tools to interact with Folderr's API, specifically for managing and communicating with Folderr Assistants.
folderr-tech
Tools
set_api_token
Set an API token for authentication (alternative to login)
login
Login to Folderr with email and password
list_assistants
List all available assistants
ask_assistant
Ask a question to a specific assistant
list_workflows
List all available workflows
get_workflow_inputs
Get the required inputs for a workflow
execute_workflow
Execute a workflow with the required inputs
README
Folderr MCP Server
A Model Context Protocol (MCP) server that provides tools to interact with Folderr's API, specifically for managing and communicating with Folderr Assistants.
Installation
Add to your MCP Settings
{
"mcpServers": {
"folderr": {
"command": "npx",
"args": ["-y", "@folderr/folderr-mcp-server"]
}
}
}
Features
The server provides the following tools:
Authentication
Two methods of authentication are supported:
-
Login with Email/Password
{ "name": "login", "arguments": { "email": "user@example.com", "password": "your-password" } }
-
API Token Authentication
{ "name": "set_api_token", "arguments": { "token": "your-api-token" } }
API tokens can be generated from the Folderr developers section. This method is recommended for automated or long-running processes.
Assistant Management
-
List Assistants
{ "name": "list_assistants", "arguments": {} }
Returns a list of all available assistants for the authenticated user.
-
Ask Assistant
{ "name": "ask_assistant", "arguments": { "assistant_id": "assistant-id", "question": "Your question here" } }
Send a question to a specific assistant and receive their response.
Configuration
The server stores its configuration in a config.json
file, which includes:
- Base URL for the Folderr API
- Authentication token (from login or API key)
Error Handling
The server provides detailed error messages for common scenarios:
- Authentication failures
- Invalid requests
- API errors
- Network issues
Development
To build the server:
npm install
npm run build
Usage in MCP Settings
Add the following to your MCP settings configuration:
{
"mcpServers": {
"folderr": {
"command": "node",
"args": ["/path/to/folderr-server/build/index.js"]
}
}
}
Authentication Flow
- Either:
- Use the
login
tool with email and password - Use the
set_api_token
tool with an API token from Folderr's developers section
- Use the
- The authentication token is automatically saved and used for subsequent requests
- All assistant-related tools require authentication before use
Error Messages
Common error messages and their meanings:
- "Not logged in": No authentication token is set
- "Login failed": Invalid credentials
- "Failed to list assistants": Error retrieving assistant list
- "Failed to ask assistant": Error sending question to assistant
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.
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.
MCP Package Docs Server
Facilitates LLMs to efficiently access and fetch structured documentation for packages in Go, Python, and NPM, enhancing software development with multi-language support and performance optimization.
Claude Code MCP
An implementation of Claude Code as a Model Context Protocol server that enables using Claude's software engineering capabilities (code generation, editing, reviewing, and file operations) through the standardized MCP interface.
@kazuph/mcp-taskmanager
Model Context Protocol server for Task Management. This allows Claude Desktop (or any MCP client) to manage and execute tasks in a queue-based system.
Apple MCP Server
Enables interaction with Apple apps like Messages, Notes, and Contacts through the MCP protocol to send messages, search, and open app content using natural language.
Linear MCP Server
Enables interaction with Linear's API for managing issues, teams, and projects programmatically through the Model Context Protocol.

Supabase MCP Server
A Model Context Protocol (MCP) server that provides programmatic access to the Supabase Management API. This server allows AI models and other clients to manage Supabase projects and organizations through a standardized interface.
mermaid-mcp-server
A Model Context Protocol (MCP) server that converts Mermaid diagrams to PNG images.