![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@folderr/folderr-mcp-server
Advanced tools
A Model Context Protocol (MCP) server that provides tools to interact with Folderr's API, specifically for managing and communicating with Folderr Assistants.
The server provides the following tools:
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.
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.
The server stores its configuration in a config.json
file, which includes:
The server provides detailed error messages for common scenarios:
To build the server:
npm install
npm run build
Add the following to your MCP settings configuration:
{
"mcpServers": {
"folderr": {
"command": "node",
"args": ["/path/to/folderr-server/build/index.js"]
}
}
}
login
tool with email and passwordset_api_token
tool with an API token from Folderr's developers sectionCommon error messages and their meanings:
FAQs
A Model Context Protocol server
The npm package @folderr/folderr-mcp-server receives a total of 0 weekly downloads. As such, @folderr/folderr-mcp-server popularity was classified as not popular.
We found that @folderr/folderr-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.