{
	"name": "blockwill",
	"description": "BlockWill MCP server — read-only tools for BlockWill's public product, FAQ, pricing, and comparison content. Lets AI agents answer questions about the digital inheritance platform without scraping HTML.",
	"version": "1.0.0",
	"serverUrl": "https://www.blockwill.io/mcp",
	"transport": "streamable-http",
	"protocolVersion": "2025-06-18",
	"documentation": "https://www.blockwill.io/developers",
	"auth": "none",
	"tools": [
		{
			"name": "get_overview",
			"description": "Return a structured overview of BlockWill: summary, the three core products, security/compliance, and target audience.",
			"inputSchema": {
				"type": "object",
				"properties": {},
				"additionalProperties": false
			}
		},
		{
			"name": "search_faqs",
			"description": "Search BlockWill's FAQ and product content for a natural-language query and return the best-matching answers.",
			"inputSchema": {
				"type": "object",
				"properties": {
					"query": {
						"type": "string",
						"description": "The question or keywords to search for."
					},
					"limit": {
						"type": "integer",
						"minimum": 1,
						"maximum": 10,
						"default": 5
					}
				},
				"required": ["query"],
				"additionalProperties": false
			}
		},
		{
			"name": "get_pricing",
			"description": "Return BlockWill subscription pricing for a region across all plans.",
			"inputSchema": {
				"type": "object",
				"properties": {
					"region": {
						"type": "string",
						"enum": ["in", "uae", "global"],
						"description": "Pricing region: 'in' (India/SEA/Africa, INR), 'uae' (GCC, AED), or 'global' (US/EU/rest of world, USD). Defaults to global."
					}
				},
				"additionalProperties": false
			}
		},
		{
			"name": "compare_alternatives",
			"description": "Return how BlockWill compares against traditional estate planning, cloud storage, and other digital estate platforms.",
			"inputSchema": {
				"type": "object",
				"properties": {},
				"additionalProperties": false
			}
		}
	]
}
