by ergodiclabs
Play 'Two Truths and a Twist,' a fun trivia site offering an interactive quiz game with scoring, content creation, and d
Runs an interactive trivia game where players guess which of three statements is the false "twist" among two truths. The server manages game rounds, scoring, and provides trivia content creation tools.
Two Truths and a Twist is a community-built MCP server published by ergodiclabs that provides AI assistants with tools and capabilities via the Model Context Protocol. Play 'Two Truths and a Twist,' a fun trivia site offering an interactive quiz game with scoring, content creation, and d It is categorized under other.
You can install Two Truths and a Twist in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Two Truths and a Twist is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
We wired Two Truths and a Twist into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Two Truths and a Twist reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Two Truths and a Twist has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Useful MCP listing: Two Truths and a Twist is the kind of server we cite when onboarding engineers to host + tool permissions.
Two Truths and a Twist is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Strong directory entry: Two Truths and a Twist surfaces stars and publisher context so we could sanity-check maintenance before adopting.
Two Truths and a Twist is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Useful MCP listing: Two Truths and a Twist is the kind of server we cite when onboarding engineers to host + tool permissions.
Two Truths and a Twist has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Two Truths and a Twist reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
showing 1-10 of 51
Two Truths and a Twist: The world's first Model Context Protocol (MCP) game
To install twotruthsandatwist for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @ErgodicLabs/twotruthsandatwist --client claude
You can install the game directly from PyPI:
pip install ttaat
Or if you prefer using uv:
uv pip install ttaat
First, initialize the game database:
ttaat db upgrade
To start the MCP server:
ttaat serve
This will start the Two Truths and a Twist MCP server, which LLMs can connect to for playing the game.
To see game statistics:
ttaat db stats
To connect an MCP-compatible LLM to the game server, you'll need to configure the MCP connection. Create a configuration file (e.g., claude_desktop_config.json) with the following content:
{
"mcpServers": {
"TwoTruthsAndATwist": {
"command": "ttaat",
"args": ["serve"]
}
}
}
For Claude Desktop, place this file in:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json~/.config/Claude/claude_desktop_config.jsonTwo Truths and a Twist is a trivia game where:
The game leverages the MCP protocol to provide a fun, interactive trivia experience where AI models both generate the content and facilitate gameplay.
Once connected to an MCP-enabled LLM, you can start a game with prompts like:
Let's play Two Truths and a Twist! Create a round about space exploration.
Create a game round about ancient civilizations.
This package implements an MCP server that provides custom game tools:
create_round: Creates a new game round with a question and three statementssubmit_guess: Lets players submit their guess for which statement is the twistreveal_twist: Reveals the answer with explanations for each statementget_round: Retrieves details for a specific roundget_last_round: Gets details of the most recent roundget_stats: Retrieves game statisticsPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.