- Home
- MCP servers
- Waldzell Metagames
Waldzell Metagames
- typescript
5
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"waldzellai-waldzell-metagames-server": {
"command": "node",
"args": [
"/path/to/waldzell-metagames-server/dist/index.js"
]
}
}
}You get a powerful MCP server that exposes a large library of structured metagames. It converts open-ended challenges into time-bound, decision-governed workflows you can use to tackle software development, project management, and operations research problems with repeatable results.
How to use
You connect using any MCP client and start exploring metagames by category or by name. Use the available API calls to list all metagames, filter by category or complexity, and fetch the content of a specific metagame along with its metadata. You can also access resources for a given metagame to read its content directly.
How to install
Prerequisites: you need Node.js and npm installed on your system.
# Clone the repository
git clone https://github.com/yourusername/waldzell-metagames-server.git
cd waldzell-metagames-server
# Install dependencies
npm install
# Build the server
npm run build
Configuration
Add the MCP server configuration to your client so it can connect to this server. The following example shows how to configure the server entry named "waldzell-metagames".
{
"mcpServers": {
"waldzell-metagames": {
"command": "node",
"args": ["/path/to/waldzell-metagames-server/dist/index.js"]
}
}
}
Notes on usage and endpoints
The server exposes a set of endpoints for listing metagames, filtering, and retrieving content. Typical workflow involves listing, filtering to narrow down to a suitable metagame, and fetching the content with optional metadata. You can also read resources for a specific metagame to access its structured content.
Example usage patterns
-
List all available metagames and view them in a hierarchical tree.
-
Filter by category such as software-development or project-management to discover relevant metagames.
-
Retrieve a specific metagame by name, with or without metadata, to study its phases, decision gates, and termination conditions.
Available tools
listMetagames
List all available metagames; can return a hierarchical tree for convenient navigation.
getMetagame
Fetch the content of a specific metagame by name, with optional metadata.
listResources
List and read resources associated with metagames, enabling direct content access.