Add Morrowind MCP config + context file — zero-code tuning #16
Reference in New Issue
Block a user
Delete Branch "fix/mcp-morrowind-tool-naming"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Two new files that make Morrowind gameplay tunable without code changes or releases:
morrowind/mcp_config.yamlExternalized runtime config. Edit this file to change:
server_keytools[]guards.max_consecutive_errorsguards.action_cooldown_secondsguards.auto_quicksave_intervalperception.openmw_loggameplay.system_prompt_suffixtrajectories.enabledmorrowind/CONTEXT.mdHermes context file with exact tool names, argument schemas, gameplay loop instructions, and error recovery rules. The model reads this at session start so it never has to guess tool names.
How to tweak
Change tool behavior: edit
mcp_config.yaml, restart Hermes session. No code changes.Change what the model knows: edit
CONTEXT.md. Takes effect next session.Add a new MCP tool: add it to
mcp_server.py, then add a matching entry in bothmcp_config.yaml(tools array) andCONTEXT.md(table + docs).Paired with
timmy-config PR (renames server key
morrowind→mw)