- Home
- MCP servers
- Volcengine Knowledge Base
Volcengine Knowledge Base
- python
1
GitHub Stars
python
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": {
"suqidan-volcengine_knowledgebase_mcp": {
"command": "python",
"args": [
"/path/to/kb_mcp.py"
]
}
}
}You set up this Volcengine Knowledge Base MCP server to enable fast knowledge-base search and interactive dialogue within your Claude Desktop workflow. It runs locally as a manageable microservice that your MCP client can start and talk to, simplifying secure credential handling and focused knowledge access.
How to use
You will connect your MCP client to the knowledge-base MCP server to perform two main tasks: searching the Volcengine knowledge base and getting chat-based completions for conversations that reference knowledge content. To use it, configure your client to point at the local MCP server instance you started, then provide your knowledge base credentials when prompted. The server is designed to securely store credentials on your machine and only expose the knowledge-base capabilities to your client.
How to install
Prerequisites: Python 3.10 or higher and Claude Desktop. You also need to have a Volcengine account with knowledge-base access configured.
Step 1: Clone the project repository
git clone git@github.com:suqidan/volc-kb-mcp.git
cd volc-kb-mcp
Step 2: Install dependencies
pip install -r requirements.txt
Step 3: Configure Claude Desktop to use the knowledge-base MCP server
{
"mcpServers": {
"kb": {
"command": "python",
"args": [
"/path/to/kb_mcp.py"
]
}
}
}
Additional content
You will set up credentials and knowledge-base details within your client as you begin using the server. The following common actions are supported: configure credentials, search knowledge, and generate chat completions.
Available tools
configure
Set up and store the MCP credentials and knowledge base configuration for your Volcengine knowledge base.
search_knowledge
Query the knowledge base to retrieve relevant knowledge entries matching your search term.
chat_completion
Request a conversational completion to generate a context-aware response within a chat flow.