eventos MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eventos MCP ServerList tickets for event content ID 101103"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eventos MCP Server
eventos APIと統合するためのModel Context Protocol (MCP)サーバー実装です。
概要
このMCPサーバーは、eventos イベント管理プラットフォームのAPIと通信し、AIアシスタントがイベントやチケットの管理を行えるようにします。
Related MCP server: Othos MCP
機能
🔐 認証管理: APIキーによる自動認証とトークン管理
🎫 チケット管理: チケットの作成、取得、更新、削除
📋 一覧取得: チケット一覧の取得(ページネーション対応)
セットアップ
必要条件
Node.js 20以上
npm または yarn
eventos APIキー
インストール
# リポジトリのクローン
git clone https://github.com/bsj-m-takigawa/eventos-mcp.git
cd eventos-mcp
# 依存関係のインストール
npm install
# ビルド
npm run build環境変数の設定
.envファイルを作成し、以下の情報を設定してください:
# eventos設定
EVENTOS_TENANT=your-subdomain(今後指定のドメイン対応できるようにする/認証方式を変えてロールによって取得範囲が変わるとかも検討)
EVENTOS_API_KEY=your-api-key-here
EVENTOS_API_URL=https://public-api.eventos.tokyo使用方法
MCPサーバーの起動
npm startMCP設定 (Claude Desktop)
Claude Desktopの設定ファイル(claude_desktop_config.json)に以下を追加:
{
"mcpServers": {
"eventos": {
"command": "node",
"args": ["/path/to/eventos-mcp/dist/cli/server.js"],
"env": {
"EVENTOS_API_KEY": "your-api-key-here"
}
}
}
}利用可能なMCPツール
認証
eventos_authenticate
eventos APIの認証を行い、アクセストークンを取得します。
{
"name": "eventos_authenticate",
"arguments": {}
}チケット管理
eventos_list_tickets
チケット一覧を取得します。
{
"name": "eventos_list_tickets",
"arguments": {
"content_id": "101103",
"limit": 10,
"offset": 0
}
}eventos_get_ticket
特定のチケット情報を取得します。
{
"name": "eventos_get_ticket",
"arguments": {
"ticketId": "661431",
"content_id": "101103"
}
}eventos_create_ticket
新しいチケットを作成します。
{
"name": "eventos_create_ticket",
"arguments": {
"content_id": "101103",
"eventId": "event-001",
"type": "general",
"name": "一般チケット",
"description": "イベント参加用チケット",
"price": 5000,
"currency": "JPY",
"quantity": 100
}
}eventos_update_ticket
既存のチケットを更新します。
{
"name": "eventos_update_ticket",
"arguments": {
"ticketId": "661431",
"content_id": "101103",
"eventId": "event-001",
"type": "general",
"name": "更新後のチケット名",
"price": 3000,
"currency": "JPY",
"quantity": 50
}
}eventos_delete_ticket
チケットを削除します。
{
"name": "eventos_delete_ticket",
"arguments": {
"ticketId": "661431",
"content_id": "101103"
}
}API仕様
認証方式
エンドポイント:
GET /api/v1/tokenヘッダー:
x-api-key: {API_KEY}レスポンス:
{ "access_token": "...", "expired_at": "..." }
チケットAPI
ベースURL:
https://public-api.eventos.tokyo/api/v1/ticket/normal/master/{content_id}認証ヘッダー:
X-API-Key: {API_KEY}Token: {ACCESS_TOKEN}
チケットデータ形式
チケットは複雑な構造を持ちます:
{
"ticket": {
"common": {
// 共通設定(販売期間、価格、在庫数など)
},
"language_data": [
// 言語別の情報(タイトル、説明など)
],
"multiple_prices": [
// 複数価格設定(オプション)
]
}
}開発
テストの実行
# 全テストの実行
npm test
# 単体テストのみ
npm test -- tests/unit/
# MCPサーバーの動作確認
node test-mcp-server.cjsビルド
npm run build開発モード
npm run devサーバーの起動確認
# MCPサーバーを直接起動
npm start
# 別ターミナルでテストスクリプトを実行
node test-mcp-server.cjsトラブルシューティング
403 Forbidden エラー
APIキーが正しいか確認してください
APIキーの有効期限を確認してください
422 Unprocessable Entity エラー
enable_multiple_priceは作成後変更できません必須フィールドがすべて含まれているか確認してください
content_idが必要
eventos APIのチケット操作には
content_idが必須です正しいcontent_idを使用しているか確認してください
ライセンス
MIT
貢献
プルリクエストを歓迎します。大きな変更の場合は、まずissueを開いて変更内容を議論してください。
サポート
問題が発生した場合は、GitHubのissueを作成してください。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseBqualityBmaintenanceAn MCP server that exposes the Tickiti helpdesk API to AI assistants, enabling ticket management and helpdesk operations via natural language.Last updated11MIT- AlicenseBqualityDmaintenanceMCP server for the Othos platform that enables AI agents to manage organizations, projects, columns, and tickets via OAuth or bearer token authentication.Last updated3434MIT
- Flicense-qualityDmaintenanceMCP server for interacting with the Eventin booking system, enabling natural language management of bookings, events, and venues.Last updated
- Flicense-qualityDmaintenanceMCP server to list and get events from Evento's public API using an API key.Last updated1
Related MCP Connectors
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for interacting with the Supabase platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bsj-m-takigawa/eventos-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server