A Model Context Protocol server that provides access to Valyu's knowledge retrieval and feedback APIs. This server enables LLMs to search proprietary and web sources for information and submit feedback on transactions.
knowledge
- Search proprietary and/or web sources for information
query
(string): The question or topic to search forsearch_type
(string): Type of sources to search ("proprietary", "web", or "all")max_price
(number): Maximum allowed price per thousand queries (CPM)data_sources
(string[]): List of index names to search overmax_num_results
(integer): Number of results returned after rerankingsimilarity_threshold
(number): Minimum similarity score for included resultsquery_rewrite
(boolean): Whether to rewrite the query for better performancefeedback
- Submit user feedback for a transaction
tx_id
(string): Transaction ID to provide feedback forfeedback
(string): User feedback textsentiment
(string): Sentiment rating ("very good", "good", "bad", "very bad")docker pull ghcr.io/tiovikram/valyu-mcp-server
docker run -i --rm -e VALYU_API_KEY=your-api-key ghcr.io/tiovikram/valyu-mcp-server
VALYU_API_KEY
(required): Your Valyu API keyAdd to your Claude settings:
"mcpServers": {
"valyu": {
"command": "docker",
"args": ["run", "--pull", "--rm", "-i", "-e", "VALYU_API_KEY", "ghcr.io/tiovikram/valyu-mcp-server"],
"env": {
"VALYU_API_KEY": "<your-valyu-api-key>"
}
}
}
{
"name": "knowledge",
"arguments": {
"query": "What is quantum computing?",
"search_type": "all",
"max_price": 0.5,
"data_sources": ["valyu/valyu-arxiv", "valyu/valyu-wikipedia"],
"max_num_results": 5
}
}
{
"name": "feedback",
"arguments": {
"tx_id": "12345abcdef",
"feedback": "The information was very helpful and accurate.",
"sentiment": "very good"
}
}
You can use the MCP inspector to debug the server:
npx @modelcontextprotocol/inspector node dist/index.js
Seamless access to top MCP servers powering the future of AI integration.