thinkneo-control-plane
OfficialThinkNEO MCPサーバー
エンタープライズAIコントロールプレーン — ThinkNEO用リモートMCPサーバー。
Claude、ChatGPT、Copilot、Gemini、およびMCP互換クライアントが、ThinkNEOのガバナンス機能(支出追跡、ガードレール評価、ポリシー適用、予算監視、コンプライアンス状況、プロバイダーの健全性)と直接やり取りできるようにします。
レジストリ:
ai.thinkneo/control-planeエンドポイント:
https://mcp.thinkneo.ai/mcpトランスポート:
streamable-http認証: 保護されたツール用のBearerトークン(ThinkNEO APIキー)
ツール
ツール | 説明 | 認証 |
| Claude Codeプロジェクトのメモリファイルを読み取る | 公開 |
| プロバイダー/モデル/チーム別のAIコスト内訳 | 必須 |
| プロンプトの事前安全性評価 | 必須 |
| モデル/プロバイダー/アクションが許可されているか検証 | 必須 |
| 予算の利用状況と適用状況 | 必須 |
| アクティブなアラートとインシデント | 必須 |
| SOC2/GDPR/HIPAA対応状況 | 必須 |
| リアルタイムのAIプロバイダー健全性 | 公開 |
| ThinkNEOのデモを予約する | 公開 |
Related MCP server: Compliance Scanner MCP
Claude Desktopへの接続
~/.claude/claude_desktop_config.json (macOS/Linux) または %APPDATA%\Claude\claude_desktop_config.json (Windows) に追加してください:
認証あり(フルアクセス):
{
"mcpServers": {
"thinkneo": {
"url": "https://mcp.thinkneo.ai/mcp",
"headers": {
"Authorization": "Bearer <YOUR_THINKNEO_API_KEY>"
}
}
}
}公開ツールのみ(APIキー不要):
{
"mcpServers": {
"thinkneo": {
"url": "https://mcp.thinkneo.ai/mcp"
}
}
}ThinkNEO APIキーを取得するには、thinkneo.ai/talk-sales からアクセスをリクエストするか、hello@thinkneo.ai までメールでお問い合わせください。
VS Code (GitHub Copilot) への接続
ワークスペースまたはユーザー設定の .vscode/mcp.json に追加してください:
{
"servers": {
"thinkneo": {
"type": "http",
"url": "https://mcp.thinkneo.ai/mcp",
"headers": {
"Authorization": "Bearer <YOUR_THINKNEO_API_KEY>"
}
}
}
}curlによるテスト
利用可能なツールの一覧表示(認証不要):
curl -X POST https://mcp.thinkneo.ai/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/list",
"id": 1,
"params": {}
}'プロバイダーのステータス確認(公開ツール):
curl -X POST https://mcp.thinkneo.ai/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 2,
"params": {
"name": "thinkneo_provider_status",
"arguments": {"provider": "openai"}
}
}'AI支出の確認(Bearerトークンが必要):
curl -X POST https://mcp.thinkneo.ai/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 3,
"params": {
"name": "thinkneo_check_spend",
"arguments": {
"workspace": "prod-engineering",
"period": "this-month",
"group_by": "provider"
}
}
}'ガードレールに対するプロンプトの評価(Bearerトークンが必要):
curl -X POST https://mcp.thinkneo.ai/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <YOUR_API_KEY>" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 4,
"params": {
"name": "thinkneo_evaluate_guardrail",
"arguments": {
"text": "Summarize this document for me",
"workspace": "prod-engineering",
"guardrail_mode": "enforce"
}
}
}'セルフホストデプロイメント
前提条件
Docker + Docker Compose
Nginxリバースプロキシ (HTTPS用)
クイックスタート
git clone https://github.com/thinkneo-ai/mcp-server.git
cd mcp-server
# Configure environment
cp .env.example .env
# Edit .env: set THINKNEO_MCP_API_KEYS and THINKNEO_API_KEY
# Build and start
docker compose up -d
# Verify
curl -X POST http://localhost:8081/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1,"params":{}}'Nginx設定 (mcp.thinkneo.aiでのHTTPS)
server {
listen 443 ssl;
server_name mcp.thinkneo.ai;
ssl_certificate /etc/letsencrypt/live/mcp.thinkneo.ai/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/mcp.thinkneo.ai/privkey.pem;
location /mcp {
proxy_pass http://127.0.0.1:8081/mcp;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# Required for streamable-http (keep connection open)
proxy_buffering off;
proxy_read_timeout 300s;
proxy_send_timeout 300s;
}
}MCPレジストリへの公開
オプションA — DNS認証(推奨、ai.thinkneo/control-plane 名前空間を使用)
# 1. Generate Ed25519 key pair
openssl genpkey -algorithm Ed25519 -out /tmp/thinkneo-mcp-key.pem
# 2. Get the public key value for the DNS TXT record
PUB=$(openssl pkey -in /tmp/thinkneo-mcp-key.pem -pubout -outform DER | tail -c 32 | base64)
echo "Add DNS TXT record to thinkneo.ai:"
echo " Host: _mcp"
echo " Type: TXT"
echo " Value: v=MCPv1; k=ed25519; p=${PUB}"
# 3. Wait for DNS propagation (usually 5-30 minutes), then publish
mcp-publisher publish \
--registry-url "https://registry.modelcontextprotocol.io" \
--mcp-file "./server.json" \
--auth-method dns \
--dns-domain thinkneo.ai \
--dns-private-key /tmp/thinkneo-mcp-key.pemオプションB — GitHub認証(より簡単、io.github.thinkneo-ai/control-plane 名前空間を使用)
mcp-publisher login github
mcp-publisher publish \
--registry-url "https://registry.modelcontextprotocol.io" \
--mcp-file "./server.json"オプションC — GitHub Actions(タグプッシュ時に自動化)
完全なCI/CDワークフローについては .github/workflows/publish-mcp.yml を参照してください。
レジストリ登録の確認
# Search
curl -s "https://registry.modelcontextprotocol.io/v0/servers?search=thinkneo" | jq .
# Direct lookup
curl -s "https://registry.modelcontextprotocol.io/v0/servers/ai.thinkneo%2Fcontrol-plane" | jq .ライセンス
このプロジェクトは MIT License の下でライセンスされています。
関連情報
ThinkNEOプラットフォーム: thinkneo.ai
A2Aエージェント:
https://agent.thinkneo.ai/a2a(エージェント間相互作用のためのA2Aプロトコル)MCPレジストリ: registry.modelcontextprotocol.io
MCP仕様: modelcontextprotocol.io
お問い合わせ: hello@thinkneo.ai
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/thinkneo-ai/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server