
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
bika-mcp-server
Advanced tools
A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai.
A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai.
Tool Name | Availabe | Description |
---|---|---|
list_spaces | ✅ | Fetches all workspaces that the currently authenticated user has permission to access. |
list_nodes | ✅ | Retrieves all nodes contained within the specified workspace. |
get_records | ✅ | Read the records from a specified database with support for pagination, field filtering, and sorting options. |
get_fields_schema | ✅ | Returns the JSON schema of all fields within the specified database |
create_record | ✅ | Create a new record in the database. |
upload_attachment_via_url | ✅ | Upload an attachment to the Bika server using its web URL. |
update_record | ❌ | TODO |
You can use this server in MCP client such as Claude Desktop, CherryStudio, etc.
Claude Desktop
In the case of Claude Desktop, you need to add the following configuration information to the "mcpServers" section of the claude_desktop_config.json
file:
// Linux, MacOS
{
"mcpServers": {
"bika": {
"command": "npx",
"args": [
"-y",
"/ABSOLUTE/PATH/TO/PARENT/FOLDER/bika-mcp-server"
],
"env": {
"BIKA_API_KEY": "YOUR_API_KEY"
}
}
}
}
// Windows
{
"mcpServers": {
"bika": {
"command": "npx",
"args": [
"-y",
"D:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\bika-mcp-server"
],
"env": {
"BIKA_API_KEY": "YOUR_API_KEY"
}
}
}
}
Replace YOUR_API_KEY
with your Bika personal access token and /ABSOLUTE/PATH/TO/PARENT/FOLDER/bika-mcp-server
with the absolute path to the parent folder of this repository.
CherryStudio If you are using the CherryStudio as MCP client and Windows system, your configuration should look like this:
{
"mcpServers": {
"bika": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"D:\\ABSOLUTE\\PATH\\TO\\PARENT\\FOLDER\\bika-mcp-server"
],
"env": {
"BIKA_API_KEY": "YOUR_API_KEY"
}
}
}
}
The MCP inspector is a developer tool for testing and debugging MCP servers.
To inspect an MCP server implementation, there's no need to clone the MCP inspector repo. Instead, use npx
. For example, Bika MCP server is built at build/index.js
. Arguments are passed directly to your server, while environment variables can be set using the -e
flag:
npx @modelcontextprotocol/inspector -e BIKA_API_KEY={YOUR_API_KEY} node build/index.js
The other way is to clone the MCP inspector repo and connect the Bika MCP server in the inspector interface.
cd path/to/inspector/
npm start -- -e BIKA_API_KEY={YOUR_API_KEY}
FAQs
A Model Context Protocol server that provides read and write access to Bika.ai. This server enables LLMs to list spaces, list nodes, list records, create records and upload attachments in Bika.ai.
We found that bika-mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.