Model Context Protocol (MCP) API

This page documents the live MCP tools exposed by the sythsaz.ca agent-native integration. Connect to the SSE stream at /mcp/sse to utilize these capabilities.

gw2_smart_build_inspector

[SMART TOOL] Generates a full Markdown character sheet including gear, stats, skills, and traits.

Input Schema

{
    "type": "object",
    "properties": {
        "character_name": {
            "type": "string"
        }
    },
    "required": [
        "character_name"
    ]
}

gw2_smart_crafting_calculator

[SMART TOOL] Calculates full crafting costs for an item, factoring in your material storage and TP prices.

Input Schema

{
    "type": "object",
    "properties": {
        "item_id": {
            "type": "integer"
        }
    },
    "required": [
        "item_id"
    ]
}

gw2_smart_daily_advisor

[SMART TOOL] Generates a personalized daily checklist of Wizard's Vault and Achievements you haven't done yet.

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_smart_economy_analyzer

[SMART TOOL] Analyzes an item's trading post velocity, margins, and flipping profitability.

Input Schema

{
    "type": "object",
    "properties": {
        "item_id": {
            "type": "integer"
        }
    },
    "required": [
        "item_id"
    ]
}

gw2_smart_account_wealth

[SMART TOOL] Calculates total liquid wealth, bank wealth, and material storage wealth in copper.

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_smart_pvp_wvw_summary

[SMART TOOL] Summarizes your WvW rank, world matchup, and Structured PvP win/loss stats.

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_smart_npc_finder

Semantic search engine for the GW2 Wiki. Finds exact locations, coordinates, and services of NPCs, and can find similar NPCs offering the same service.

Input Schema

{
    "type": "object",
    "properties": {
        "npc_name": {
            "type": "string",
            "description": "The exact name of the NPC to look up (e.g. Miyani)"
        },
        "service": {
            "type": "string",
            "description": "Service type to find all NPCs that offer it (e.g. Mystic Forge, Banker, Merchant)"
        },
        "location": {
            "type": "string",
            "description": "Zone or area to search within (e.g. Lions Arch, Divinity Reach)"
        }
    }
}

gw2_raw_cosmetics_info

[RAW API] Cosmetic details: mounts, minis, outfits, novelties

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "mounts\/types",
                "mounts\/skins",
                "minis",
                "outfits",
                "novelties",
                "jadebots",
                "skiffs",
                "dyes"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_tile_service

[RAW API] Generate URL for the official map tile service

Input Schema

{
    "type": "object",
    "properties": {
        "continent_id": {
            "type": "integer"
        },
        "floor": {
            "type": "integer"
        },
        "z": {
            "type": "integer"
        },
        "x": {
            "type": "integer"
        },
        "y": {
            "type": "integer"
        }
    },
    "required": [
        "continent_id",
        "floor",
        "z",
        "x",
        "y"
    ]
}

gw2_raw_render_service

[RAW API] Generate URL for the official asset render service

Input Schema

{
    "type": "object",
    "properties": {
        "signature": {
            "type": "string"
        },
        "file_id": {
            "type": "string"
        },
        "format": {
            "type": "string",
            "enum": [
                "png",
                "jpg"
            ]
        }
    },
    "required": [
        "signature",
        "file_id"
    ]
}

gw2_raw_chat_link_encode

[RAW API] Encode IDs into base64 in-game chat links

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "coin",
                "item",
                "text",
                "map",
                "skill",
                "trait",
                "recipe",
                "wardrobe",
                "outfit"
            ]
        },
        "id": {
            "type": "integer"
        },
        "count": {
            "type": "integer",
            "default": 1
        }
    },
    "required": [
        "type",
        "id"
    ]
}

gw2_raw_chat_link_decode

[RAW API] Decode a base64 chat link to get its type and ID

Input Schema

{
    "type": "object",
    "properties": {
        "chat_link": {
            "type": "string"
        }
    },
    "required": [
        "chat_link"
    ]
}

gw2_raw_achievements_meta

[RAW API] Tomorrow's dailies, groups, and categories

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "tomorrow",
                "groups",
                "categories"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_mechanics_meta

[RAW API] Pets, races, specializations, traits, and legends

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "pets",
                "races",
                "specializations",
                "traits",
                "legends"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_guild_meta_public

[RAW API] Guild emblems, permissions, search, and upgrades

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "emblem",
                "permissions",
                "search",
                "upgrades"
            ]
        },
        "query": {
            "type": "string"
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_guild_meta_auth

[CLIENT-SIDE ONLY] [RAW API] Auth guild ranks, stash, storage, teams, active upgrades

Input Schema

{
    "type": "object",
    "properties": {
        "guild_id": {
            "type": "string"
        },
        "type": {
            "type": "string",
            "enum": [
                "ranks",
                "stash",
                "storage",
                "teams",
                "upgrades"
            ]
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "guild_id",
        "type",
        "api_key"
    ]
}

gw2_raw_story_lore

[RAW API] Character creation lore and story journal details

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "answers",
                "questions",
                "stories",
                "seasons",
                "quests"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_wvw_meta

[RAW API] WvW abilities, timers, upgrades, and guild mapping

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "abilities",
                "guilds",
                "objectives",
                "ranks",
                "timers",
                "upgrades"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_instanced_content

[RAW API] Endpoints for Dungeons, Raids, and Strike Missions clears.

Input Schema

{
    "type": "object",
    "properties": {
        "endpoint": {
            "type": "string",
            "enum": [
                "dungeons",
                "raids",
                "account\/dungeons",
                "account\/raids",
                "characters\/{id}\/dungeons"
            ]
        },
        "character_id": {
            "type": "string"
        }
    },
    "required": [
        "endpoint"
    ]
}

gw2_raw_legendaries_info

[RAW API] Endpoints for the Legendary Armory.

Input Schema

{
    "type": "object",
    "properties": {
        "endpoint": {
            "type": "string",
            "enum": [
                "legendaries",
                "account\/legendaryarmory"
            ]
        }
    },
    "required": [
        "endpoint"
    ]
}

gw2_raw_home_instance

[RAW API] Endpoints for Home Instance cats and nodes.

Input Schema

{
    "type": "object",
    "properties": {
        "endpoint": {
            "type": "string",
            "enum": [
                "home\/cats",
                "home\/nodes",
                "account\/home\/cats",
                "account\/home\/nodes"
            ]
        }
    },
    "required": [
        "endpoint"
    ]
}

gw2_raw_account_misc

[CLIENT-SIDE ONLY] [RAW API] Luck, buildstorage, recipes, heroes, tokeninfo, dailycrafting

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "luck",
                "buildstorage",
                "recipes",
                "pvp\/heroes",
                "tokeninfo",
                "wizardsvault\/listings",
                "dailycrafting",
                "dungeons",
                "mapchests",
                "worldbosses",
                "raids"
            ]
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "type",
        "api_key"
    ]
}

gw2_raw_character_details

[CLIENT-SIDE ONLY] [RAW API] Detailed character specifics

Input Schema

{
    "type": "object",
    "properties": {
        "character_name": {
            "type": "string"
        },
        "type": {
            "type": "string",
            "enum": [
                "core",
                "inventory",
                "buildtabs",
                "crafting",
                "sab",
                "training",
                "backstory",
                "quests",
                "skills",
                "specializations"
            ]
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "character_name",
        "type",
        "api_key"
    ]
}

gw2_raw_public_misc

[RAW API] Minor public catalogs

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "dungeons",
                "mailcarriers",
                "masteries",
                "materials",
                "titles",
                "raids",
                "pvp\/amulets",
                "homestead\/decorations",
                "homestead\/decorations\/categories",
                "homestead\/glyphs",
                "gliders",
                "finishers",
                "skins",
                "recipes\/search",
                "continents",
                "currencies",
                "emotes",
                "pvp\/games",
                "pvp\/heroes",
                "pvp\/ranks",
                "pvp\/seasons",
                "pvp",
                "wizardsvault",
                "wizardsvault\/objectives",
                "wvw",
                "home\/cats",
                "home\/nodes",
                "legendaryarmory"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_misc_assets

[RAW API] Current build, files, quaggans, logos, colors

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "build",
                "colors",
                "files",
                "quaggans",
                "logos",
                "itemstats"
            ]
        }
    },
    "required": [
        "type"
    ]
}

gw2_raw_pvp_leaderboards

[RAW API] PvP season leaderboards

Input Schema

{
    "type": "object",
    "properties": {
        "season_id": {
            "type": "string"
        }
    },
    "required": [
        "season_id"
    ]
}

gw2_raw_create_subtoken

[CLIENT-SIDE ONLY] [RAW API] Creates a restricted subtoken using master API key

Input Schema

{
    "type": "object",
    "properties": {
        "expire": {
            "type": "string"
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "expire",
        "api_key"
    ]
}

gw2_raw_account_emotes

[CLIENT-SIDE ONLY] [RAW API] Unlocked account emotes

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_account_summary

[CLIENT-SIDE ONLY] [RAW API] Display name, world, AP, WvW rank, fractal level

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_wallet

[CLIENT-SIDE ONLY] [RAW API] All currencies: gold, karma, laurels, etc.

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_mastery_progress

[CLIENT-SIDE ONLY] [RAW API] Unlocked masteries and point totals by region

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_characters

[CLIENT-SIDE ONLY] [RAW API] All characters: name, profession, level, race, gender, playtime

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_character_equipment

[CLIENT-SIDE ONLY] [RAW API] Get equipment for a specific character

Input Schema

{
    "type": "object",
    "properties": {
        "character_name": {
            "type": "string"
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "character_name",
        "api_key"
    ]
}

gw2_raw_material_storage

[CLIENT-SIDE ONLY] [RAW API] All crafting mats in storage with counts

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_shared_inventory

[CLIENT-SIDE ONLY] [RAW API] Shared inventory slot contents

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_tp_transactions

[CLIENT-SIDE ONLY] [RAW API] Current pending buy/sell orders on the TP

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_tp_pickup

[CLIENT-SIDE ONLY] [RAW API] Items and coin waiting for pickup at the TP

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_account_achievements

[CLIENT-SIDE ONLY] [RAW API] Achievement progress and completion status

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_guild_roster

[CLIENT-SIDE ONLY] [RAW API] Guild member list with ranks (Requires Guild Leader Auth)

Input Schema

{
    "type": "object",
    "properties": {
        "guild_id": {
            "type": "string"
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "guild_id",
        "api_key"
    ]
}

gw2_raw_guild_treasury

[CLIENT-SIDE ONLY] [RAW API] Guild treasury contents (Requires Guild Leader Auth)

Input Schema

{
    "type": "object",
    "properties": {
        "guild_id": {
            "type": "string"
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "guild_id",
        "api_key"
    ]
}

gw2_raw_guild_log

[CLIENT-SIDE ONLY] [RAW API] Recent guild event log (Requires Guild Leader Auth)

Input Schema

{
    "type": "object",
    "properties": {
        "guild_id": {
            "type": "string"
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "guild_id",
        "api_key"
    ]
}

gw2_raw_bank

[CLIENT-SIDE ONLY] [RAW API] Bank slot contents with item names and quantities

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_daily_progress

[RAW API] Everything cleared today: world bosses, dungeons, map chests, daily crafting

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_wizards_vault_progress

[CLIENT-SIDE ONLY] [RAW API] Check Wizard's Vault objectives

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "daily",
                "weekly",
                "special"
            ]
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "type",
        "api_key"
    ]
}

gw2_raw_account_unlocks

[CLIENT-SIDE ONLY] [RAW API] Check unlocked items across your account

Input Schema

{
    "type": "object",
    "properties": {
        "type": {
            "type": "string",
            "enum": [
                "skins",
                "mounts",
                "dyes",
                "titles",
                "minis",
                "novelties",
                "outfits",
                "gliders",
                "finishers",
                "cats",
                "nodes",
                "jadebots",
                "mailcarriers",
                "skiffs",
                "homestead\/decorations",
                "homestead\/glyphs",
                "legendaryarmory",
                "masteries",
                "progression",
                "pvp\/heroes",
                "recipes"
            ]
        },
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "type",
        "api_key"
    ]
}

gw2_raw_pvp_stats

[CLIENT-SIDE ONLY] [RAW API] PvP win/loss stats and current standings

Input Schema

{
    "type": "object",
    "properties": {
        "api_key": {
            "type": "string",
            "description": "[RAW API] Your personal Guild Wars 2 API Key. Used locally in the browser."
        }
    },
    "required": [
        "api_key"
    ]
}

gw2_raw_daily_crafting

[RAW API] Today's daily craftable items with reset time

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_map_chests

[RAW API] All Hero's Choice Chests and which maps they're in

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_world_bosses

[RAW API] All world bosses schedule

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_daily_achievements

[RAW API] Today's daily achievements

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_profession_info

[RAW API] Full profession data: weapon types, flags, skill slots, spec IDs

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "string"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_skill_info

[RAW API] Skill details by ID

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_recipe_info

[RAW API] Full recipe details: disciplines, ingredients, output

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_achievement_info

[RAW API] Achievement details: description, rewards, tiers, bits

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_achievement_search

[RAW API] Search achievements by name or keyword

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

gw2_raw_guild_info

[RAW API] Search guild by ID

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "string"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_map_info

[RAW API] Map details: continent, region, level range

Input Schema

{
    "type": "object",
    "properties": {
        "id": {
            "type": "integer"
        }
    },
    "required": [
        "id"
    ]
}

gw2_raw_wvw_match

[RAW API] Current WvW scores, kills, deaths for a world

Input Schema

{
    "type": "object",
    "properties": {
        "world_id": {
            "type": "integer"
        }
    },
    "required": [
        "world_id"
    ]
}

gw2_raw_wizards_vault_public

[RAW API] Current WV season info and available Astral Rewards

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_worlds

[RAW API] List of all server worlds and IDs

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_tp_price

[RAW API] Live buy/sell prices for 1-10 items by name or ID. Shows spread, quantities.

Input Schema

{
    "type": "object",
    "properties": {
        "items": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    },
    "required": [
        "items"
    ]
}

gw2_raw_tp_listings

[RAW API] Full order book (all buy/sell orders) for an item

Input Schema

{
    "type": "object",
    "properties": {
        "item": {
            "type": "string"
        }
    },
    "required": [
        "item"
    ]
}

gw2_raw_gem_exchange

[RAW API] Current gold to gem and gem to gold exchange rates

Input Schema

{
    "type": "object",
    "properties": {}
}

gw2_raw_item_info

[RAW API] Name, description, rarity, type, icon for 1-10 items

Input Schema

{
    "type": "object",
    "properties": {
        "items": {
            "type": "array",
            "items": {
                "type": "string"
            }
        }
    },
    "required": [
        "items"
    ]
}

gw2_raw_item_search

[RAW API] Find items by partial name via the official GW2 Wiki

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

list_missing_alt_images

Retrieves a list of image attachments missing alt-text

Input Schema

{
    "type": "object",
    "properties": {}
}

update_image_alt_text

Updates the alt-text for a specific image attachment ID.

Input Schema

{
    "type": "object",
    "properties": {
        "attachment_id": {
            "type": "integer"
        },
        "alt_text": {
            "type": "string"
        }
    },
    "required": [
        "attachment_id",
        "alt_text"
    ]
}

update_faq

Updates the dynamic AI FAQ block injected on pages/posts.

Input Schema

{
    "type": "object",
    "properties": {
        "faq_q1": {
            "type": "string"
        },
        "faq_a1": {
            "type": "string"
        },
        "faq_q2": {
            "type": "string"
        },
        "faq_a2": {
            "type": "string"
        }
    }
}

wp_list_tags

[RAW API] List all article tags and their post counts

Input Schema

{
    "type": "object",
    "properties": {}
}

wp_get_social_links

[RAW API] Get all social media profile links for the streamer

Input Schema

{
    "type": "object",
    "properties": {}
}

twitch_get_stream_stats

[RAW API] Get current Twitch stream stats (followers, total views)

Input Schema

{
    "type": "object",
    "properties": {
        "username": {
            "type": "string"
        }
    }
}

wp_get_page

[RAW API] Fetch the full content of a WordPress page (e.g. about, contact)

Input Schema

{
    "type": "object",
    "properties": {
        "slug": {
            "type": "string"
        }
    },
    "required": [
        "slug"
    ]
}

wp_search_all

[RAW API] Unified search across all posts and pages

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

wp_search_articles

[RAW API] Search all site articles

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

wp_get_article

[RAW API] Fetch the full content of an article by slug

Input Schema

{
    "type": "object",
    "properties": {
        "slug": {
            "type": "string"
        }
    },
    "required": [
        "slug"
    ]
}

wp_latest_articles

[RAW API] Get the most recent posts

Input Schema

{
    "type": "object",
    "properties": {
        "limit": {
            "type": "integer",
            "default": 10
        }
    }
}

wp_list_categories

[RAW API] Get all article categories and topics on this site

Input Schema

{
    "type": "object",
    "properties": {}
}

wp_search_gw2_guides

[RAW API] Search within Guild Wars 2 guides

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

wp_search_streamerbot_scripts

[RAW API] Search for Streamer.bot or OBS scripts

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

wp_search_homeassistant_guides

[RAW API] Search within Home Assistant guides

Input Schema

{
    "type": "object",
    "properties": {
        "query": {
            "type": "string"
        }
    },
    "required": [
        "query"
    ]
}

twitch_get_bio

[RAW API] Get live Twitch bio and socials for any streamer

Input Schema

{
    "type": "object",
    "properties": {
        "username": {
            "type": "string"
        }
    },
    "required": [
        "username"
    ]
}

twitch_is_live

[RAW API] Check if a Twitch channel is currently live. Known channels: sythsaz (Sythsaz), kiki_sparks (Kit). Omit username to check both.

Input Schema

{
    "type": "object",
    "properties": {
        "username": {
            "type": "string",
            "description": "Twitch login name. Omit to check both sythsaz and kiki_sparks."
        }
    }
}

wp_recommended_products

[RAW API] Get gear recommendations and affiliate links

Input Schema

{
    "type": "object",
    "properties": {}
}

wp_get_support_options

[RAW API] Get all ways to support or donate

Input Schema

{
    "type": "object",
    "properties": {}
}

twitch_get_schedule

[RAW API] Get the current Twitch stream schedule

Input Schema

{
    "type": "object",
    "properties": {}
}

stripe_initiate_donation

[RAW API] Generate a Stripe checkout intent to donate fiat.

Input Schema

{
    "type": "object",
    "properties": {
        "amount": {
            "type": "number"
        }
    },
    "required": [
        "amount"
    ]
}