BNDY Server
БесплатноНе проверенEnables AI assistants to search and create venues and artists, and create events on the BNDY platform via AWS Lambda.
Описание
Enables AI assistants to search and create venues and artists, and create events on the BNDY platform via AWS Lambda.
README
Model Context Protocol server for AI-driven event creation in BNDY platform.
Overview
This MCP server allows Claude Desktop (or other MCP clients) to interact with BNDY's AWS Lambda infrastructure to:
- Search for venues and artists
- Create new venues and artists (with AI review flags)
- Create events linking artists and venues
Prerequisites
- Node.js 18+ and npm
- AWS CLI configured with credentials
- Claude Desktop app installed
- Access to BNDY AWS infrastructure (eu-west-2)
Installation
npm install
npm run build
Configuration
Claude Desktop Setup
Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"bndy-events": {
"command": "node",
"args": [
"C:\\VSProjects\\bndy-MCPServer\\dist\\index.js"
],
"env": {
"AWS_REGION": "eu-west-2",
"AWS_PROFILE": "default"
}
}
}
}
Tools Available
1. search_venue
Search for existing venues by name and city.
Input:
{
name: string; // e.g., "Murphys"
city: string; // e.g., "Bury"
}
2. create_venue
Create a new venue with AI review flags.
Input:
{
name: string;
address: string;
city: string;
googlePlaceId?: string;
latitude?: number;
longitude?: number;
}
3. search_artist
Search for existing artists by name.
Input:
{
name: string;
region?: string;
}
4. create_artist
Create a new artist with AI review flags.
Input:
{
name: string;
artistType: 'band' | 'solo' | 'duo' | 'dj' | 'other';
genres?: string[];
facebookUrl?: string;
instagramUrl?: string;
spotifyUrl?: string;
}
5. create_event
Create an event linking artist and venue.
Input:
{
artistId: string;
venueId: string;
date: string; // YYYY-MM-DD
startTime: string; // HH:MM (24-hour)
endTime?: string;
title?: string;
isPublic?: boolean;
}
Example Usage
In Claude Desktop:
User: "Create events for Millhouse's December tour:
- Dec 15 @ The Cavern Club, Liverpool - 8pm
- Dec 16 @ O2 Academy, Birmingham - 7:30pm"
Claude: [Uses MCP tools to search venues, create events, returns confirmation]
Development
# Build TypeScript
npm run build
# Watch mode
npm run dev
# Run server
npm start
AWS Lambda Functions Used
- VenuesFunction:
bndy-serverless-api-VenuesFunction-z91LnIIRKHhq - ArtistsFunction:
bndy-serverless-api-ArtistsFunction-4wCJA9JLMwF5 - EventsFunction:
bndy-serverless-api-EventsFunction-03skAPFIwe9g
Security
- Uses your local AWS credentials
- No public endpoints
- Local-only stdio communication
- All AI-created entities flagged for review
Related Documentation
- [AI MCP Event Creation Guide](../bndy All Platform Docs/Feature Development/AI_MCP_EVENT_CREATION.md)
- [BNDY Platform Bible](../bndy All Platform Docs/BNDY_PLATFORM_BIBLE.md)
Установка BNDY Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/flowency-live/bndy-MCPFAQ
BNDY Server MCP бесплатный?
Да, BNDY Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для BNDY Server?
Нет, BNDY Server работает без API-ключей и переменных окружения.
BNDY Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить BNDY Server в Claude Desktop, Claude Code или Cursor?
Открой BNDY Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare BNDY Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
