connpass-mcp-server
connpassのイベントの検索ができるMCP Server(MCP Apps対応)
Install / Use
claude mcp add kajidog -- npx -y github:kajidog/connpass-mcp-serverIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Development & EngineeringSupported Platforms
Tags
Our assessment of connpass-mcp-server
connpass-mcp-server scores 71/100 on our quality scale, 1106th of 1,937 Development & Engineering skills we index.
Its MCP Server is 3.1 KB long, well organised into 23 sections with 5 code examples: a solid amount of guidance for an agent.
It has 3 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated about 3 months ago, so connpass-mcp-server is actively maintained.
- Our last check on 2026-09-10 found the source still online.
- It is released under the MIT license, a permissive license that allows use, modification and commercial use with attribution.
- Its trust signals score 87/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
Safety scan
No issues foundOur scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands.
Automated pattern scan on 2026-09-26. It catches known dangerous patterns, not every risk — read a skill before letting an agent act on it.
connpass-mcp-server compared with similar skills
All 4 of these similar skills score higher than connpass-mcp-server; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| connpass-mcp-server (this skill)by kajidog | 71 | 3 | 3mo ago | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.4k | 10d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.8k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.3k | 1d ago | CLAUDE.md |
| CowAgentby zhayujie | 100 | 47.1k | today | CLAUDE.md |
Frequently asked questions
- How do I install connpass-mcp-server?
- Run
claude mcp add kajidog -- npx -y github:kajidog/connpass-mcp-server. The install tabs above show the steps for each supported agent. - Which AI agents does connpass-mcp-server work with?
- It is written for Claude Code and Claude Desktop, as a MCP Server file. Other agents that read the same format can often use it too.
- Is connpass-mcp-server safe to use?
- Our scan of the whole file found no instruction hijacking, hidden characters, credential access, data exfiltration or destructive commands. It is MIT-licensed and scores 87/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is connpass-mcp-server still maintained?
- The repository was last updated about 3 months ago, so connpass-mcp-server is actively maintained.
Skill content
View source on GitHubConnpass MCP Server
Connpass の API を MCP (Model Context Protocol) 経由で利用するためのツール群です。AI エージェントや LLM が Connpass のイベント・グループ・ユーザー情報を自然言語に近い入力で取得できます。
できること
- イベント検索: 日付(YYYY-MM-DD 形式)やキーワードでイベントを検索
- イベント詳細: イベント ID を指定して説明文・発表情報をフル取得
- スケジュール検索: ユーザーの参加予定イベントを日付別に表示
- ユーザー情報取得: ニックネームやユーザー ID でユーザー情報を検索
- グループ情報取得: キーワードや所在地でグループを検索
- 参加イベント管理: 特定ユーザーの参加予定・過去参加・登壇イベントを取得
- 発表情報取得: イベントの発表セッション詳細を取得
- MCP Apps 対応: インタラクティブなイベントブラウザ UI を表示可能
MCP Apps 対応
MCP Apps Extension 対応クライアントでは、リッチなインタラクティブ UI が利用できます。
<div align="center"> <img src="docs/img/event-search.png" alt="イベント検索カルーセル表示" width="600"> <p><em>イベント検索結果を表示</em></p> </div> <div align="center"> <img src="docs/img/schedule-search.png" alt="スケジュール検索表示" width="600"> <p><em>スケジュール検索:タイトルクリックでConnpassへ直接移動</em></p> </div> <div align="center"> <img src="docs/img/event-details.png" alt="イベント詳細表示" width="600"> <p><em>イベント詳細:セッション情報や主催者情報を確認</em></p> </div>クイックセットアップ
stdio モードで起動(Claude Desktop など)
# 起動
npx @kajidog/connpass-mcp-server
# API キーを指定
CONNPASS_API_KEY=your-api-key npx @kajidog/connpass-mcp-server
# ヘルプを表示
npx @kajidog/connpass-mcp-server --help
HTTP モードで起動
npx @kajidog/connpass-mcp-server --http --port 3000
必要要件
- Node.js 18 以上
- pnpm 9 以上(開発の場合)
- Docker & Docker Compose(Docker 利用の場合)
Docker で起動
# .env ファイルを作成
cp .env.example .env
# .env ファイルを編集して CONNPASS_API_KEY を設定
# Docker Compose で起動
docker compose up -d
# ログを確認
docker compose logs -f
サーバーは http://localhost:3000/mcp で HTTP モードとして起動します。
ディレクトリ構成
connpass-in-chatgpt/
├── apps/
│ └── mcp-server/ # MCP サーバー (MCP Apps Extension 版)
│ └── src/
│ ├── tools/ # MCP ツール定義 (events, users, groups)
│ │ ├── utils/ # ユーティリティ (formatting, shared, types)
│ │ └── ui-tools/ # UI 内部ツール
│ └── config.ts # サーバー設定
│
├── packages/
│ ├── api-client/ # Connpass API クライアント (TypeScript)
│ ├── connpass-ui/ # インタラクティブ UI コンポーネント (React)
│ └── mcp-core/ # MCP コア SDK (stdio/HTTP, config)
│
├── Dockerfile # Docker イメージ定義
├── docker-compose.yml # Docker Compose 設定
├── .env.example # 環境変数のサンプル
├── pnpm-workspace.yaml # pnpm ワークスペース設定
└── package.json # ルートパッケージ設定
環境変数
| 変数名 | 説明 | デフォルト |
|--------|------|-----------|
| CONNPASS_API_KEY | Connpass API キー | - |
| CONNPASS_DEFAULT_USER_ID | スケジュール検索のデフォルトユーザー ID | - |
| CONNPASS_RATE_LIMIT_ENABLED | API レート制限の有効化 | true |
| CONNPASS_RATE_LIMIT_DELAY_MS | レート制限の遅延 (ms) | 1000 |
| MCP_HTTP_MODE | HTTP モードで起動 | false |
| MCP_HTTP_PORT | HTTP モードのポート | 3000 |
| MCP_HTTP_HOST | HTTP モードのホスト | 0.0.0.0 |
| MCP_API_KEY | HTTP モードの API キー認証 | - |
開発
# 依存関係をインストール
pnpm install
# 全パッケージをビルド
pnpm build
# 型チェック
pnpm typecheck
# 開発モードで起動
pnpm dev
ライセンス
MIT
Related Skills
Agent-Reach
85.4kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.8kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.3k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
CowAgent
47.1kOpen-source super AI assistant & Agent Harness. Plans tasks, runs tools and skills, self-evolves with memory and knowledge. Multi-agent, multi-model, multi-channel. Lightweight, extensible, one-line install.
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
