MCP Server for AI Agents

Let Claude, ChatGPT, and other AI agents manage your feedback programmatically.

AI Readyv1.0.0Claude Compatible
What is MCP?
Model Context Protocol - The bridge between AI and your tools

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:

Submit new feedback on behalf of users
Retrieve and analyze existing feedback
Update feedback status and priorities
Generate reports and summaries
Export data for analysis
Manage roadmap automatically
Installation
Get up and running in 3 simple steps
1

Install the MCP server

npm install -g @tnyvoice/mcp-server

Or with yarn: yarn global add @tnyvoice/mcp-server

2

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"
      ]
    }
  }
}
3

Restart Claude Desktop

Restart Claude Desktop to load the MCP server. You should see "tnyvoice" in the tools menu.

Available Tools
Complete set of feedback management tools for AI agents
submit_feedback
Create new feedback items programmatically
Parameters:
• title: string (required)
• description: string (optional)
• submitter_email: string (optional)
list_feedback
Retrieve feedback items with optional filtering
Parameters:
• status: string (optional)
• sort: string (optional)
• limit: number (optional)
vote_feedback
Cast a vote on existing feedback
Parameters:
• feedback_id: string (required)
• identifier: string (required)
Example Prompts
Natural language commands that AI agents can understand

"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

Troubleshooting
Common issues and solutions

Version & Updates
Stay up to date with the latest features
Current Versionv1.0.0
v1.0.0Latest
  • • Core feedback management tools
  • • Support for all CRUD operations
  • • Roadmap and export functionality
  • • Compatible with Claude Desktop 0.7+
View all releases on GitHub
Ready to enhance your AI workflow?
Get your API key and start using AI agents to manage feedback