k5tuck/binelekv2-mcp-server
3.2
If you are the rightful owner of binelekv2-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The SMB AI Command Platform's MCP Server facilitates AI assistants in interacting with platform APIs for various business operations.
Tools
6
Resources
0
Prompts
0
SMB AI Command Platform - MCP Server
Model Context Protocol (MCP) server for the SMB AI Command Platform, enabling AI assistants to interact with platform APIs.
Overview
This MCP server provides tools for AI assistants (like Claude) to:
- Query business data
- Create and manage tasks
- Access connector data
- Interact with dashboards
- Monitor security status
Installation
npm install
npm run build
Configuration
Create a .env file based on .env.example:
SMB_API_URL=http://localhost:3000
SMB_API_KEY=your-api-key
Usage
With Claude Desktop
Add to your Claude Desktop config (~/.claude/claude_desktop_config.json):
{
"mcpServers": {
"smb-platform": {
"command": "node",
"args": ["/path/to/binelekv2-mcp-server/build/index.js"],
"env": {
"SMB_API_URL": "http://localhost:3000",
"SMB_API_KEY": "your-api-key"
}
}
}
}
Development
npm run dev
Available Tools
| Tool | Description |
|---|---|
smb_query | Query data using natural language |
smb_create_task | Create a new task |
smb_list_tasks | List tasks with filters |
smb_get_connectors | Get connected services |
smb_get_dashboard | Get dashboard data |
smb_get_security_status | Get security posture |
Structure
src/
├── index.ts # MCP server entry point
├── client.ts # API client for SMB platform
└── tools/ # Tool implementations
Related Repositories
License
MIT