an mcp server for vikingdb store and search VikingDB is a high-performance vector database developed by ByteDance. You can easily use it following the doc bellow: The server implements the following tools: - vikingdb-colleciton-intro: introduce the collection of vikingdb - vikingdb-index-intro: introduce the index of vikingdb - vikingdb-upsert-information: upsert information to vikingdb for later
Add this skill
npx mdskills install KashiwaByte/vikingdb-mcp-serverMCP server for VikingDB vector database with store/search tools and clear configuration
1[](https://mseep.ai/app/kashiwabyte-vikingdb-mcp-server)23# VikingDB MCP server4[](https://archestra.ai/mcp-catalog/kashiwabyte__vikingdb-mcp-server)56[](https://smithery.ai/server/mcp-server-vikingdb)7an mcp server for vikingdb store and search89## What is VikingDB10VikingDB is a high-performance vector database developed by ByteDance.1112You can easily use it following the doc bellow:13https://www.volcengine.com/docs/84313/125444414151617### Tools1819The server implements the following tools:2021- vikingdb-colleciton-intro: introduce the collection of vikingdb2223- vikingdb-index-intro: introduce the index of vikingdb2425- vikingdb-upsert-information: upsert information to vikingdb for later use2627- vikingdb-search-information: searche for information in the VikingDB282930## Configuration3132- vikingdb_host: The host to use for the VikingDB server.3334- vikingdb_region: The region to use for the VikingDB server.3536 - vikingdb_ak: The Access Key to use for the VikingDB server.3738 - vikingdb_sk: The Secret Key to use for the VikingDB server.3940- collection_name: The name of the collection to use.4142- index_name: The name of the index to use.434445## Quickstart4647### Install4849### Installing via Smithery5051To install VikingDB MCP server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/mcp-server-vikingdb):5253```bash54npx -y @smithery/cli install mcp-server-vikingdb --client claude55```5657#### Claude Desktop5859On MacOS: `~/Library/Application\ Support/Claude/claude_desktop_config.json`6061On Windows: `%APPDATA%/Claude/claude_desktop_config.json`626364Development/Unpublished Servers Configuration65```66{67 "mcpServers": {68 "mcp-server-vikingdb": {69 "command": "uv",70 "args": [71 "--directory",72 "dir to mcp-server-vikingdb",73 "run",74 "mcp-server-vikingdb",75 "--vikingdb-host",76 "your host",77 "--vikingdb-region",78 "your region",79 "--vikingdb-ak",80 "your access key",81 "--vikingdb-sk",82 "your secret key",83 "--collection-name",84 "your collection name",85 "--index-name",86 "your index name"87 ]88 }89 }90}9192 ```9394Published Servers Configuration95 ```96{97 "mcpServers": {98 "mcp-server-vikingdb": {99 "command": "uvx",100 "args": [101 "mcp-server-vikingdb",102 "--vikingdb-host",103 "your host",104 "--vikingdb-region",105 "your region",106 "--vikingdb-ak",107 "your access key",108 "--vikingdb-sk",109 "your secret key",110 "--collection-name",111 "your collection name",112 "--index-name",113 "your index name"114 ]115 }116 }117 }118 ```119120121## Development122123### Building and Publishing124125To prepare the package for distribution:1261271. Sync dependencies and update lockfile:128```bash129uv sync130```1311322. Build package distributions:133```bash134uv build135```136137This will create source and wheel distributions in the `dist/` directory.1381393. Publish to PyPI:140```bash141uv publish142```143144Note: You'll need to set PyPI credentials via environment variables or command flags:145- Token: `--token` or `UV_PUBLISH_TOKEN`146- Or username/password: `--username`/`UV_PUBLISH_USERNAME` and `--password`/`UV_PUBLISH_PASSWORD`147148### Debugging149150Since MCP servers run over stdio, debugging can be challenging. For the best debugging151experience, we strongly recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector).152153154You can launch the MCP Inspector via [`npm`](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) with this command:155156```bash157npx @modelcontextprotocol/inspector uv --directory dir_to_mcp_server_vikingdb run mcp-server-vikingdb --vikingdb-host your_host --vikingdb-region your_region --vikingdb-ak your_access_key --vikingdb-sk your_secret_key --collection-name your_collection_name --index-name your_index_name158```159160161Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.162
Full transparency — inspect the skill content before installing.