{"name":"io.github.Graphmaxer/gw1-mcp","slug":"graphmaxer-gw1-mcp","title":"Guild Wars 1 Build Compiler","description":"GW1 build compiler: skill data, template code encode/decode, validation, hero roster. Read-only.","url":"https://mcp.market/server/graphmaxer-gw1-mcp","rating":null,"grade":"A","score":91,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":26,"stars":1,"forks":0,"downloads_week":null,"last_push_at":"2026-09-14T08:48:42.000Z","license":"MIT"},"uptime":{"percent":100,"checks":6,"ok":6,"last_checked_at":"2026-09-20T21:41:09.702Z","last_ok_at":"2026-09-20T21:41:09.702Z","latency_ms":223},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/Graphmaxer/gw1-mcp","website":"https://github.com/Graphmaxer/gw1-mcp","version":"1.1.3","remotes":[{"type":"streamable-http","url":"https://gw1-mcp.graphmaxer.workers.dev/mcp"}],"packages":[],"tools":[{"name":"decode_pawned_team","description":"Decode a paw-ned2 team build blob (the 'pwnd0001...>...<' format shared on PvXwiki team pages and by the paw-ned2 tool) into its individual builds: player/hero label, description, and each skill bar fully decoded. Whitespace and line wraps in the pasted blob are tolerated. For a single (non-team) build code, use decode_template instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"pwnd":{"type":"string","maxLength":16384,"description":"The full pwnd blob, starting with 'pwnd000'"}},"required":["pwnd"],"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"decode_template","description":"Decode an in-game GW1 skill template code (e.g. \"OwpiMypMBg1cxcBAMBdmtIKAA\") into professions, attribute allocations and the 8 skills with their stats and descriptions. Whitespace and line wraps in the pasted code are tolerated. This decodes a SINGLE build code; for a multi-hero paw-ned2 team blob, use decode_pawned_team instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"code":{"type":"string","maxLength":128,"description":"The template code string"}},"required":["code"],"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"encode_template","description":"Compile a build (professions, attributes, 8 skills by exact English name) into an official in-game template code. The build is validated first; on rule violations the errors are returned instead of a code. Unknown skill names return closest-match suggestions. IMPORTANT: template codes MUST come from this tool — never write or guess a code by hand, hand-written codes are invalid in-game. If unsure, verify any code with decode_template.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"primary":{"type":"string","maxLength":64,"description":"Primary profession, e.g. \"Dervish\""},"secondary":{"description":"Secondary profession, e.g. \"Monk\". Omit or \"None\" for none.","type":"string","maxLength":64},"attributes":{"maxItems":15,"type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","maxLength":64,"description":"Exact attribute name, e.g. \"Mysticism\""},"rank":{"type":"integer","minimum":0,"maximum":12,"description":"Base rank 0-12 (before runes)"}},"required":["attribute","rank"]},"description":"Attribute point allocations (template format caps this at 15 entries)"},"skills":{"minItems":8,"maxItems":8,"type":"array","items":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}]},"description":"Exactly 8 skill names in bar order. Use null for an empty slot. Names must be exact English skill names."},"forHero":{"default":false,"description":"Set true if this bar is for a hero (PvE-only skills are flagged)","type":"boolean"},"forPvp":{"default":false,"description":"Set true for a PvP character's bar. PvP versions of split skills are only valid when this is true, and a PvP bar is expected to use them.","type":"boolean"},"unlockedSkillIds":{"description":"Optional: unlocked skill ids from a GWToolbox account export (/exportaccount). Skills outside this list are flagged as warnings.","maxItems":8192,"type":"array","items":{"type":"integer","minimum":0,"maximum":65535}}},"required":["primary","attributes","skills"],"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"get_hero","description":"Look up a GW1 hero by name or by id (GWCA HeroID, matching the AccountExport plugin output). Returns profession, campaign and how the hero is unlocked. Remember: heroes can equip any skill unlocked at ACCOUNT level, but NO PvE-only skill at all — including Signet of Capture. validate_build with forHero=true reports each one as an error, not a warning. Use this for one known hero; to browse or filter the roster, use list_heroes instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"Hero name, e.g. \"Master of Whispers\"","type":"string","maxLength":64},"id":{"description":"GWCA HeroID value","type":"integer","minimum":0,"maximum":255}},"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"get_skill","description":"Look up a single GW1 skill by exact English name or by template skill id. Returns full stats (energy, activation, recharge, adrenaline, sacrifice), profession, attribute, campaign, elite flag and description. If the name is not found, returns the closest matches so you can correct spelling. Use this when you already know the exact skill; to discover skills by profession, attribute or name fragment, use search_skills instead.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"name":{"description":"Exact skill name, e.g. \"Mystic Regeneration\". The official French name also resolves (\"Sceau de guérison\" -> Healing Signet); every other name field on every other tool is English-only.","type":"string","maxLength":64},"id":{"description":"Template skill id","type":"integer","minimum":0,"maximum":65535}},"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"list_heroes","description":"List all GW1 heroes, optionally filtered by profession or campaign name. Useful for team-building: shows which professions are coverable by heroes and how each hero is unlocked.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"professionName":{"description":"Filter by the hero's profession, exact English name: Warrior, Ranger, Monk, Necromancer, Mesmer, Elementalist, Assassin, Ritualist, Paragon or Dervish.","type":"string","maxLength":64},"campaignName":{"description":"Filter by the campaign the hero is recruited in, exact English name: Prophecies, Factions, Nightfall or Eye of the North.","type":"string","maxLength":64}},"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"search_skills","description":"Search the full GW1 skill database by profession, attribute, campaign, elite flag or name fragment (valid values are documented per parameter). Returns compact records, at most `limit` of them alongside a `total` count of every match — a full page is not the whole result, page with offset. Use get_skill for full details.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"professionName":{"description":"Filter by profession: Warrior, Ranger, Monk, Necromancer, Mesmer, Elementalist, Assassin, Ritualist, Paragon, Dervish, or None (common / PvE-only skills that belong to no profession).","type":"string","maxLength":64},"attributeName":{"description":"Filter by attribute line, exact English name, e.g. \"Blood Magic\", \"Swordsmanship\", \"Divine Favor\".","type":"string","maxLength":64},"campaignName":{"description":"Filter by the campaign a skill was INTRODUCED in: Core, Prophecies, Factions, Nightfall, or Eye of the North. Not a filter on availability — every attribute line spans several campaigns, so combining this with attributeName hides most of the line. Omit it when exploring an attribute.","type":"string","maxLength":64},"elite":{"description":"If true, return only elite skills; if false, only non-elite; omit for both.","type":"boolean"},"nameContains":{"description":"Case-insensitive substring match on the ENGLISH skill name, e.g. \"heal\" matches every skill with 'heal' in its name. A French substring matches nothing — use get_skill for a French name.","type":"string","maxLength":64},"includePvpVersions":{"default":false,"description":"Include separate '(PvP)' skill versions. Default false — most builds want the PvE version only.","type":"boolean"},"limit":{"default":50,"description":"Maximum number of records to return (1–200, default 50). Narrow filters if you hit it.","type":"integer","minimum":1,"maximum":200},"offset":{"default":0,"description":"Number of records to skip, for paging through results beyond the limit.","type":"integer","minimum":0,"maximum":9007199254740991}},"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}},{"name":"validate_build","description":"Check a build (professions, attributes, 8 skills by exact English name) against Guild Wars 1 rules: one elite max, profession/attribute ownership, primary attributes, duplicates, rank ranges. Returns { valid, errors, warnings } without encoding — use encode_template instead when you also want the template code, since it runs these same rules and refuses on any error.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"primary":{"type":"string","maxLength":64,"description":"Primary profession, e.g. \"Dervish\""},"secondary":{"description":"Secondary profession, e.g. \"Monk\". Omit or \"None\" for none.","type":"string","maxLength":64},"attributes":{"maxItems":15,"type":"array","items":{"type":"object","properties":{"attribute":{"type":"string","maxLength":64,"description":"Exact attribute name, e.g. \"Mysticism\""},"rank":{"type":"integer","minimum":0,"maximum":12,"description":"Base rank 0-12 (before runes)"}},"required":["attribute","rank"]},"description":"Attribute point allocations (template format caps this at 15 entries)"},"skills":{"minItems":8,"maxItems":8,"type":"array","items":{"anyOf":[{"type":"string","maxLength":64},{"type":"null"}]},"description":"Exactly 8 skill names in bar order. Use null for an empty slot. Names must be exact English skill names."},"forHero":{"default":false,"description":"Set true if this bar is for a hero (PvE-only skills are flagged)","type":"boolean"},"forPvp":{"default":false,"description":"Set true for a PvP character's bar (PvP versions of split skills are only valid then).","type":"boolean"},"unlockedSkillIds":{"description":"Optional: unlocked skill ids from a GWToolbox account export (/exportaccount). Skills outside this list are flagged as warnings.","maxItems":8192,"type":"array","items":{"type":"integer","minimum":0,"maximum":65535}}},"required":["primary","attributes","skills"],"$schema":"http://json-schema.org/draft-07/schema#","additionalProperties":false}}],"scan":{"score":91,"grade":"A","scanned_at":"2026-09-19T21:01:08.540Z","report":{"scannerVersion":"0.1.7","scannedAt":"2026-09-19T21:01:08.505Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 922ms"]},"poisoning":{"score":15,"max":15,"notes":["8 tool descriptions checked"]},"auth":{"score":10,"max":15,"notes":["open endpoint, read-only tools"]},"maintenance":{"score":15,"max":15,"notes":["last push 6 days ago"]},"identity":{"score":8,"max":10,"notes":["registry namespace matches repository owner","GitHub account older than a year"]}},"findings":[],"inputs":{"probes":[{"url":"https://gw1-mcp.graphmaxer.workers.dev/mcp","reachable":true,"authRequired":false,"latencyMs":922,"serverInfo":{"name":"gw1-mcp","version":"1.1.3"}}],"packages":[],"repo":{"found":true,"owner":"Graphmaxer","repo":"gw1-mcp","archived":false,"pushedAt":"2026-09-14T08:48:42Z","stars":1,"forks":0,"openIssues":1,"ownerType":"User","ownerAvatarUrl":"https://avatars.githubusercontent.com/u/16637307?v=4","ownerCreatedAt":"2016-01-10T19:11:56Z","license":"MIT"},"icon":{"url":"https://avatars.githubusercontent.com/u/16637307?v=4&s=128","source":"github"},"presence":{"stars":1,"forks":0,"downloadsWeek":null,"license":"MIT","lastPushAt":"2026-09-14T08:48:42.000Z","score":26}}}},"grade_history":[],"reviews":[]}