with one click
bohrium-oss
// Guide for uploading local files to Bohrium OSS when MCP tools require file URLs. Use this when you need to transmit local files through MCP tools that cannot accept local paths directly.
// Guide for uploading local files to Bohrium OSS when MCP tools require file URLs. Use this when you need to transmit local files through MCP tools that cannot accept local paths directly.
Build, configure, and run EvoMaster autonomous AI agents. Use when you need to create single or multi-agent systems with tool calling, MCP integration, skill extensions, or self-evolving workflows for scientific discovery, Kaggle competitions, or general automation tasks.
Feishu document read/write operations. Activate when user mentions Feishu docs, cloud docs, or docx links.
Feishu cloud storage file management. Activate when user mentions cloud space, folders, drive.
Feishu permission management for documents and files. Activate when user mentions sharing, permissions, collaborators.
Feishu knowledge base navigation. Activate when user mentions knowledge base, wiki, or wiki links.
Retrieval-Augmented Generation (RAG) skill for generic semantic search and knowledge retrieval. Use when you need to build or call vector-based search over your own documents using vector indexes (optional FAISS) and embedding models (local transformers or OpenAI embeddings), or when integrating LLMs with external knowledge bases in a project-agnostic way.
| name | bohrium-oss |
| description | Guide for uploading local files to Bohrium OSS when MCP tools require file URLs. Use this when you need to transmit local files through MCP tools that cannot accept local paths directly. |
| license | Proprietary |
When calling MCP tools that require file transmission, you cannot use local file paths directly. You must upload files to Bohrium OSS first and use the returned URL in the MCP tool. This guide covers the setup and upload workflow.
Ensure the following environment variables are set before uploading:
| Variable | Description |
|---|---|
HTTP_PLUGIN_TYPE | HTTP plugin configuration |
BOHRIUM_USER_ID | Bohrium user ID |
BOHRIUM_EMAIL | Bohrium account email |
BOHRIUM_PASSWORD | Bohrium account password |
BOHRIUM_PROJECT_ID | Bohrium project ID |
BOHRIUM_ACCESS_KEY | Bohrium access key |
If any of these are not set, remind the user to configure them.
bohr-agent is typically pre-installed. If not available:
pip install bohr-agent-sdk -i https://pypi.org/simple --upgrade
bohr-agent artifact upload -s https path/to/file
After the upload completes, you will receive a URL. Use this URL in the MCP tool's file parameterโusers and MCP servers can access the file directly via this URL.
bohr-agent artifact upload -s https <file_path>| Task | Command |
|---|---|
| Upload single file | bohr-agent artifact upload -s https path/to/file |
| Install bohr-agent | pip install bohr-agent-sdk -i https://pypi.org/simple --upgrade |