nerve-mcp-server
Nerve MCP Serverは、Nerve API用のMCPサーバーを実装するプロジェクトです。このツールは、API、ファイルシステム、メール、AI/LLMなどの機能を統合し、さまざまなSaaSツールとの連携を可能にします。開発者は、Nerve APIを通じて顧客フィードバックを取得したり、他のツールと統合したりすることができます。MCPサーバーは、特にAIや機械学習のアプリケーションにおいて、データの処理や分析を効率化するための重要な役割を果たします。
GitHubスター
0
ユーザー評価
未評価
フォーク
0
イシュー
0
閲覧数
1
お気に入り
0
Nerve MCP Server
This project implements an MCP server for the Nerve API.
Installation
1. Setting up Integration in Nerve:
Go to https://usenerve.com/ and create an account.
Continue to your Settings page to create an API key to use for the client.
2. Adding MCP config to your client:
Add the following to your .cursor/mcp.json
or claude_desktop_config.json
(MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
)
{
"mcpServers": {
"nerve": {
"command": "uv",
"args": [
"--directory",
"/<ABSOLUTE_PATH>/nerve-mcp-server",
"run",
"nerve-mcp"
],
"env": {
"NERVE_API_KEY": "<API_KEY>",
"NERVE_ENVIRONMENT": "prod"
}
}
}
}
Don't forget to replace API_KEY
with your own key. Find it from your Settings tab:
3. Enable third party integrations:
Navigate to your integrations page on Nerve to conenct to the various SaaS tools you use.
Examples
- Using the following instruction
What emails have I gotten with customer feedback?
AI will plan one API calls, /search
(more examples coming soon)
Development
Execute
NERVE_API_KEY='<API_KEY>' uv run nerve-mcp