- Home
- MCP servers
- Folo
Folo
- javascript
13
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"hyoban-folo-mcp": {
"command": "npx",
"args": [
"folo-mcp",
"-y"
],
"env": {
"FOLO_SESSION_TOKEN": "YOUR_TOKEN"
}
}
}
}You run the Folo MCP Server to connect Folo data sources with your MCP client, enabling chat-driven actions and data access within your MCP workflow.
How to use
Set your Folo session token in your environment to authenticate requests.
Start the MCP server using the deployment command provided by the runtime. This runs locally via your package runner and uses a simple auto-accept flow for configuration.
Run the server with the recommended startup command:
npx folo-mcp -y
How to install
Prerequisites: you need Node.js and npm installed on your system.
Prepare your environment and start the MCP server in one step. The token must be available to authorize requests.
Recommended steps to get started:
# Set your Folo session token
export FOLO_SESSION_TOKEN=YOUR_TOKEN
# Start the MCP server
npx folo-mcp -y
On Windows PowerShell, you can use:
$env:FOLO_SESSION_TOKEN = "YOUR_TOKEN"
npx folo-mcp -y
Notes and configuration tips
The server uses the FOLO_SESSION_TOKEN environment variable for authentication. Ensure this token remains secret and is not exposed in logs or command histories.
If you need to reconfigure, you can re-run the startup command after updating the token in your environment.