Bonusly
БесплатноНе проверенEnables management of Bonusly employee recognition bonuses, including listing, creating, and retrieving bonuses with advanced filtering.
Описание
Enables management of Bonusly employee recognition bonuses, including listing, creating, and retrieving bonuses with advanced filtering.
README
Comprehensive MCP server for Bonusly employee recognition platform
MCP server to interact with Bonusly API, enabling management of employee recognition bonuses through Claude and other MCP clients.
🚀 Available on Smithery for easy local installation!
Table of Contents
Quick Start
Quick Installation
git clone https://github.com/ajramos/mcp-bonusly
cd mcp-bonusly
uv sync
Quick Setup
- Get your Bonusly API token from https://bonus.ly/api
- Create a
.envfile with your token:BONUSLY_API_TOKEN=your_api_token_here - Configure Claude Desktop to use the server
Features
✨ Complete Bonus Management
- List bonuses with advanced filtering (including new user_email parameter for team analysis)
- Create new bonuses with validation
- Retrieve bonus details for specific bonuses
🔍 Advanced Filtering
- Filter by date range
- Filter by giver email
- Filter by receiver email
- Filter by hashtags
- Limit number of results
🛡️ Security
- Secure authentication with API token
- Input data validation
- Robust error handling
Installation
Option 1: Install from Smithery (Recommended)
This MCP is available on Smithery as a local installation:
- Visit Smithery
- Search for "mcp-bonusly"
- Follow the installation instructions for local MCPs
- Configure your Bonusly API token (see Setup section below)
Option 2: Manual Installation with uv
git clone https://github.com/ajramos/mcp-bonusly
cd mcp-bonusly
uv sync
Option 3: Manual Installation with pip
git clone https://github.com/ajramos/mcp-bonusly
cd mcp-bonusly
pip install -e .
Setup
1. Get Bonusly API Token
- Go to https://bonus.ly/api
- Sign in to your Bonusly account
- Create a new API token
- Copy the generated token
2. Configure Environment Variables
Create a .env file in the project root directory:
BONUSLY_API_TOKEN=your_api_token_here
3. Configure Claude Desktop
Add this configuration to your Claude Desktop configuration file:
{
"mcpServers": {
"mcp-bonusly": {
"command": "uv",
"args": [
"--directory",
"/full/path/to/mcp-bonusly",
"run",
"mcp-bonusly"
],
"env": {
"BONUSLY_API_TOKEN": "your_api_token_here"
}
}
}
}
Available Tools
🎁 list_bonuses
List bonuses with optional filters.
Parameters:
limit(optional): Number of bonuses to return (1-100, default: 20)start_date(optional): Start date (format: YYYY-MM-DD)end_date(optional): End date (format: YYYY-MM-DD)giver_email(optional): Giver's email addressreceiver_email(optional): Receiver's email addressuser_email(optional): User's email address (bonuses given or received by this user). Recommended for team analysis: search for each team member individually to ensure complete coverage.hashtag(optional): Hashtag to filter by (e.g., #teamwork)include_children(optional): Include bonus replies
🆕 create_bonus
Create a new recognition bonus.
Parameters:
giver_email(optional): Giver's email address (admin only, regular users send bonuses in their own name)reason(required): Bonus reason (e.g., "+10 @user for #teamwork")parent_bonus_id(optional): Parent bonus ID for replies
🔍 get_bonus
Get details of a specific bonus.
Parameters:
bonus_id(required): ID of the bonus to retrieve
Example Prompts
List Recent Bonuses
"Show me the last 10 bonuses given"
Create a Bonus
"Create a 5-point bonus for [email protected] for excellent work on the project with #teamwork"
Search Bonuses by Hashtag
"Show me all bonuses with hashtag #innovation from last month"
Get Bonus Details
"Get details for bonus with ID 24abcdef1234567890abcdef"
Development
Setup Development Environment
git clone https://github.com/ajramos/mcp-bonusly
cd mcp-bonusly
uv sync
uv run mcp-bonusly
Debugging with MCP Inspector
For the best debugging experience, we recommend using the MCP Inspector:
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-bonusly run mcp-bonusly
View Server Logs
# macOS
tail -n 20 -f ~/Library/Logs/Claude/mcp-server-mcp-bonusly.log
# Linux
tail -n 20 -f ~/.config/Claude/logs/mcp-server-mcp-bonusly.log
# Windows
Get-Content "$env:APPDATA\Claude\logs\mcp-server-mcp-bonusly.log" -Wait -Tail 20
Project Structure
mcp-bonusly/
├── src/
│ └── mcp_bonusly/
│ ├── __init__.py
│ ├── server.py # Main MCP server
│ ├── client.py # Bonusly API client
│ ├── models.py # Pydantic models
│ └── exceptions.py # Custom exceptions
├── tests/ # Tests (coming soon)
├── .env.example # Environment variables example
├── .gitignore
├── README.md
├── pyproject.toml
└── LICENSE
Security
- All credentials are handled through environment variables
- API token is stored securely
- No data is sent to third parties except Bonusly API
- Input validation on all operations
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/new-feature) - Commit your changes (
git commit -am 'Add new feature') - Push to the branch (
git push origin feature/new-feature) - Open a Pull Request
License
MIT License - see LICENSE file for details.
Support
If you encounter any issues:
- Check the logs using the debugging instructions above
- Verify your API token in the
.envfile - Open an issue with:
- Your operating system
- Python version
- Error messages or logs
- Steps to reproduce the issue
About Bonusly
Bonusly is an employee recognition platform that enables companies to create a culture of appreciation and engagement. Employees can give points to each other with personalized messages and hashtags that reflect company values.
Created with ❤️ by Angel Ramos
Установка Bonusly
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/ajramos/mcp-bonuslyFAQ
Bonusly MCP бесплатный?
Да, Bonusly MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Bonusly?
Нет, Bonusly работает без API-ключей и переменных окружения.
Bonusly — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Bonusly в Claude Desktop, Claude Code или Cursor?
Открой Bonusly на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Bonusly with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
