Skip to main content
Glama

@kopern/mcp-server

npm version kopern MCP server License: MIT

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キーの取得

  1. kopern.ai にアクセスしてサインインします

  2. Settings > API Keys に移動します

  3. Generate API Key をクリックします

  4. kpn_... で始まるキーをコピーします

キーには2種類あります:

  • ユーザーレベルキー — 30種類のプラットフォームツールすべてにアクセス可能(エージェントのCRUD、評価、テンプレートなど)

  • エージェントバインドキーkopern_chatkopern_agent_info を含む32種類のツールすべてにアクセス可能

ツール (32種類)

エージェント管理 (8ツール)

ツール

説明

kopern_create_agent

システムプロンプト、モデル、スキル、ツールを指定して新しいエージェントを作成

kopern_get_agent

エージェントの完全な設定とメタデータを取得

kopern_update_agent

エージェントのシステムプロンプト、モデル、ドメイン、組み込みツールを更新

kopern_delete_agent

エージェントを完全に削除

kopern_list_agents

スコアとバージョンを含む全エージェントを一覧表示

kopern_chat

エージェントにメッセージを送信(ツール呼び出しを含む)

kopern_agent_info

エージェントのメタデータを取得(エージェントバインドキーのみ)

kopern_deploy_template

37種類の既製テンプレート(BTP、法務、Eコマースなど)からデプロイ

評価と最適化 (6ツール)

ツール

説明

kopern_grade_prompt

インラインテストケースに基づいてシステムプロンプトを評価

kopern_create_grading_suite

再利用可能なテストスイートを作成

kopern_run_grading

評価スイートを実行し、スコアと改善メモを取得

kopern_run_autoresearch

AutoTune — 反復的なプロンプト最適化(改善メモを使用)

kopern_get_grading_results

評価実行の詳細な結果と改善メモを取得

kopern_list_grading_runs

スイートのスコア履歴を一覧表示

チームとパイプライン (4ツール)

ツール

説明

kopern_create_team

マルチエージェントチームを作成(並列、逐次、条件付き)

kopern_run_team

プロンプトを使用してチームを実行

kopern_create_pipeline

入力マッピングを備えたマルチステップパイプラインを作成

kopern_run_pipeline

パイプラインを逐次実行

コネクタ (7ツール)

ツール

説明

kopern_connect_widget

埋め込み可能なチャットウィジェットをデプロイ

kopern_connect_telegram

Telegramボットを接続

kopern_connect_whatsapp

WhatsApp Businessを接続

kopern_connect_slack

Slackワークスペースに接続

kopern_connect_webhook

インバウンド/アウトバウンドWebhookを設定

kopern_connect_email

GmailまたはOutlookを接続

kopern_connect_calendar

GoogleまたはMicrosoftカレンダーを接続

セッションとメモリ (3ツール)

ツール

説明

kopern_list_sessions

メトリクスを含む会話セッションを一覧表示

kopern_get_session

セッションの詳細(イベント、ツール呼び出し、トークン)を取得

kopern_manage_memory

エージェントメモリのCRUD(記憶、想起、忘却、一覧)

ユーティリティ (4ツール)

ツール

説明

kopern_list_templates

37種類のテンプレートを閲覧(汎用28 + 業種別9)

kopern_compliance_report

EU AI法コンプライアンスレポートを生成

kopern_get_usage

トークン使用量、コスト、エージェントごとの内訳

kopern_export_agent

エージェントをポータブルなJSONとしてエクスポート

kopern_import_agent

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_KEY

はい

Kopern APIキー (kpn_...)

KOPERN_URL

いいえ

https://kopern.ai/api/mcp/server

カスタムエンドポイント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プロトコルメソッド(initializetools/listtools/callping)を処理します。依存関係はゼロで、Node.js 18+と fetch のみを使用します。

リンク

ライセンス

MIT

Install Server
A
license - permissive license
A
quality
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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.

View all MCP Connectors

Appeared in Searches

Latest Blog Posts

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