MCP Server for AI Agents
Let Claude, ChatGPT, and other AI agents manage your feedback programmatically.
The Model Context Protocol (MCP) is an open standard that enables AI assistants like Claude to interact with external systems through a defined set of tools. By installing our MCP server, you give AI agents the ability to:
Install the MCP server
npm install -g @tnyvoice/mcp-serverOr with yarn: yarn global add @tnyvoice/mcp-server
Configure Claude Desktop
Add the following to your Claude Desktop configuration file:
{
"mcpServers": {
"tnyvoice": {
"command": "tnyvoice-mcp",
"args": [
"--api-key",
"sk_your_api_key_here"
]
}
}
}~/Library/Application Support/Claude/config.json%APPDATA%\Claude\config.json~/.config/Claude/config.jsonRestart Claude Desktop
Restart Claude Desktop to load the MCP server. You should see "tnyvoice" in the tools menu.
• description: string (optional)
• submitter_email: string (optional)
• sort: string (optional)
• limit: number (optional)
• identifier: string (required)
"Show me all the feedback items that are currently planned"
Claude will use list_feedback with status filter
"Submit new feedback: Users want keyboard shortcuts for common actions"
Claude will use submit_feedback to create the item
"What are the top 5 most voted feature requests?"
Claude will use list_feedback sorted by votes
"Update the dark mode request to 'building' status"
Claude will find the item and use update_feedback_status
"Export all feedback to analyze trends"
Claude will use export_feedback to get all data
- • Core feedback management tools
- • Support for all CRUD operations
- • Roadmap and export functionality
- • Compatible with Claude Desktop 0.7+