Vi Assistant by Vultax
Vi market evidence, hypothetical price scenarios and published Vultax research.
Should I use this
Quality & Safety
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"vultax-research": {
"url": "https://vultax.com/mcp"
}
}
}Remote endpoints
https://vultax.com/mcpstreamable-httphttps://vultax.com/vi-mcpstreamable-httpWhat it can do
Tool inventory
Tools (5)
🟢inspect_prediction_market(market, marketSlug, includeTrades)
Inspect an exact Polymarket link: resolve the market, read resolution rules, outcome prices, spread, volume, liquidity and a bounded recent-trade sample. Returns source timestamps and an exact Vultax workspace link. Multi-market events require selection. Data may be delayed. No account or trading access.
Input Schema
{
"type": "object",
"properties": {
"market": {
"type": "string",
"minLength": 1,
"maxLength": 2048,
"description": "An exact Polymarket event/market URL or market slug. Never send private account links."
},
"marketSlug": {
"type": "string",
"maxLength": 240,
"description": "Select one exact returned market when an event has several outcomes."
},
"includeTrades": {
"type": "boolean",
"default": true
}
},
"required": [
"market"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢calculate_probability_scenario(contracts, entryPrice, scenarioPrices, entryCostUsd, exitCostUsd)
Calculate the hypothetical dollar impact of user-selected outcome prices for a fixed number of contracts, including explicit entry and exit dollar costs. Pure arithmetic: not a forecast, live quote, strategy backtest, order or paper position.
Input Schema
{
"type": "object",
"properties": {
"contracts": {
"type": "number",
"exclusiveMinimum": 0,
"maximum": 1000000
},
"entryPrice": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"scenarioPrices": {
"type": "array",
"items": {
"type": "number",
"minimum": 0,
"maximum": 1
},
"minItems": 1,
"maxItems": 12
},
"entryCostUsd": {
"type": "number",
"minimum": 0,
"maximum": 1000000,
"default": 0
},
"exitCostUsd": {
"type": "number",
"minimum": 0,
"maximum": 1000000,
"default": 0
}
},
"required": [
"contracts",
"entryPrice",
"scenarioPrices"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢search_research(query, limit, offset)
Search Vultax published crypto and prediction-market studies; returns citation URLs and stable article IDs.
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"maxLength": 240,
"default": ""
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 10,
"default": 5
},
"offset": {
"type": "integer",
"minimum": 0,
"maximum": 10000,
"default": 0
}
},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_research_article(slug)
Read a complete published Vultax study and its source metadata. This is historical research, not a current market snapshot.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"maxLength": 160,
"pattern": "^[a-z0-9-]+$"
}
},
"required": [
"slug"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}🟢get_research_dataset(slug, dataset)
Retrieve published study datasets and CSV/JSON links with units, observation periods and limitations.
Input Schema
{
"type": "object",
"properties": {
"slug": {
"type": "string",
"maxLength": 160,
"pattern": "^[a-z0-9-]+$"
},
"dataset": {
"type": "string",
"maxLength": 200,
"pattern": "^[a-zA-Z0-9_-]+$"
}
},
"required": [
"slug"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}Community
Evidence