Kopern
@kopern/mcp-server
Claude Code、Cursor、Windsurf、およびあらゆるMCPクライアント向けの32種類のAIエージェントツール。
ターミナルやIDEから直接、AIエージェントの構築、テスト、評価、デプロイが可能です。
クイックスタート
Claude Code
claude mcp add kopern -- npx -y @kopern/mcp-server次に、APIキーを設定します:
export KOPERN_API_KEY=kpn_your_key_here手動設定
.mcp.json(プロジェクト単位)または ~/.claude/settings.json(グローバル)に追加します:
{
"mcpServers": {
"kopern": {
"command": "npx",
"args": ["-y", "@kopern/mcp-server"],
"env": {
"KOPERN_API_KEY": "kpn_your_key_here"
}
}
}
}Cursor / Windsurf
MCP設定に追加します:
{
"mcpServers": {
"kopern": {
"command": "npx",
"args": ["-y", "@kopern/mcp-server"],
"env": {
"KOPERN_API_KEY": "kpn_your_key_here"
}
}
}
}ストリーミングHTTP(インストール不要)
クライアントがHTTP MCPトランスポートを直接サポートしている場合:
{
"mcpServers": {
"kopern": {
"type": "http",
"url": "https://kopern.ai/api/mcp/server",
"headers": {
"Authorization": "Bearer kpn_your_key_here"
}
}
}
}Related MCP server: Google Analytics MCP Server
APIキーの取得
kopern.ai にアクセスしてサインインします
Settings > API Keys に移動します
Generate API Key をクリックします
kpn_...で始まるキーをコピーします
キーには2種類あります:
ユーザーレベルキー — 30種類のプラットフォームツールすべてにアクセス可能(エージェントのCRUD、評価、テンプレートなど)
エージェントバインドキー —
kopern_chatやkopern_agent_infoを含む32種類のツールすべてにアクセス可能
ツール (32種類)
エージェント管理 (8ツール)
ツール | 説明 |
| システムプロンプト、モデル、スキル、ツールを指定して新しいエージェントを作成 |
| エージェントの完全な設定とメタデータを取得 |
| エージェントのシステムプロンプト、モデル、ドメイン、組み込みツールを更新 |
| エージェントを完全に削除 |
| スコアとバージョンを含む全エージェントを一覧表示 |
| エージェントにメッセージを送信(ツール呼び出しを含む) |
| エージェントのメタデータを取得(エージェントバインドキーのみ) |
| 37種類の既製テンプレート(BTP、法務、Eコマースなど)からデプロイ |
評価と最適化 (6ツール)
ツール | 説明 |
| インラインテストケースに基づいてシステムプロンプトを評価 |
| 再利用可能なテストスイートを作成 |
| 評価スイートを実行し、スコアと改善メモを取得 |
| AutoTune — 反復的なプロンプト最適化(改善メモを使用) |
| 評価実行の詳細な結果と改善メモを取得 |
| スイートのスコア履歴を一覧表示 |
チームとパイプライン (4ツール)
ツール | 説明 |
| マルチエージェントチームを作成(並列、逐次、条件付き) |
| プロンプトを使用してチームを実行 |
| 入力マッピングを備えたマルチステップパイプラインを作成 |
| パイプラインを逐次実行 |
コネクタ (7ツール)
ツール | 説明 |
| 埋め込み可能なチャットウィジェットをデプロイ |
| Telegramボットを接続 |
| WhatsApp Businessを接続 |
| Slackワークスペースに接続 |
| インバウンド/アウトバウンドWebhookを設定 |
| GmailまたはOutlookを接続 |
| GoogleまたはMicrosoftカレンダーを接続 |
セッションとメモリ (3ツール)
ツール | 説明 |
| メトリクスを含む会話セッションを一覧表示 |
| セッションの詳細(イベント、ツール呼び出し、トークン)を取得 |
| エージェントメモリのCRUD(記憶、想起、忘却、一覧) |
ユーティリティ (4ツール)
ツール | 説明 |
| 37種類のテンプレートを閲覧(汎用28 + 業種別9) |
| EU AI法コンプライアンスレポートを生成 |
| トークン使用量、コスト、エージェントごとの内訳 |
| エージェントをポータブルなJSONとしてエクスポート |
| JSONエクスポートからエージェントをインポート |
例
ターミナルからエージェントを作成
> Use kopern_create_agent to create a customer support agent for my SaaS productプロンプトを評価
> Use kopern_grade_prompt to test my system prompt with these cases:
- "What's your refund policy?" should mention "30-day guarantee"
- "Can I cancel?" should be empathetic and provide stepsテンプレートをデプロイ
> Use kopern_list_templates to show me business templates, then deploy the "restaurant" one評価と改善
> Run kopern_run_grading on my agent — it will return scores AND improvement notes.
Then run kopern_run_autoresearch to optimize using those suggestions automatically.完全なワークフロー
> Create an agent, add a grading suite with 5 test cases, run grading,
then run autoresearch to optimize the prompt to 90%+ score環境変数
変数 | 必須 | デフォルト | 説明 |
| はい | — | Kopern APIキー ( |
| いいえ |
| カスタムエンドポイントURL |
アーキテクチャ
このパッケージは軽量なstdio-to-HTTPブリッジです。MCPクライアントからstdin経由でJSON-RPCメッセージを受信し、KopernのストリーミングHTTPエンドポイントに転送して、stdout経由で応答を返します。
Claude Code ──stdin──> @kopern/mcp-server ──HTTP──> kopern.ai/api/mcp/server
<──stdout── <──JSON──Kopernサーバーは、すべてのMCPプロトコルメソッド(initialize、tools/list、tools/call、ping)を処理します。依存関係はゼロで、Node.js 18+と fetch のみを使用します。
リンク
ライセンス
MIT
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
AlicenseBqualityAmaintenanceA Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.4244,588,71336,349Apache 2.0- AlicenseAqualityAmaintenanceOfficial Google Analytics MCP Server92,949Apache 2.0
- AlicenseDqualityCmaintenanceAI-native orchestration layer with 80+ tools for task management, code editing, browser automation, terminal control, and persistent memory across CLI, local MCP, and cloud deployments.691131ISC
- AlicenseNot gradedqualityDmaintenanceBringing the debugging we know and love as human programmers to our AI agents – debug any supported language with breakpoints, variable/state inspection, and stepping, to supercharge agents' capabilities to reason about runtime code.20Apache 2.0
Related MCP Connectors
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Create and manage AI agents that collaborate and solve problems through natural language interacti…
The agent-native cloud: database, functions, AI, storage, computers. 50 tools, one API key.
Appeared in Searches
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/berch-t/kopern'
If you have feedback or need assistance with the MCP directory API, please join our Discord server