The MythOS MCP Source Repo is the open-source GitHub repository behind the mythos-mcp ๐npm package. It contains the full ๐MCP server implementation that enables any MCP-compatible AI client to interact with ๐MythOS knowledge libraries.
What It Contains
src/server.tsโ the canonical MCP server definition: 10 tools, 4 resource types, and 3 prompt templates for interacting with MythOS librariessrc/index.tsโ the stdio entry point that reads environment variables and starts the serverREADME.mdโ setup guides for Claude Desktop, Cursor, Windsurf, VS Code + GitHub Copilot, and other MCP clients
How to Contribute
The repo is public and MIT-licensed. To develop locally:
git clone https://github.com/citizens-of-one/mythos-mcp.gitcd mythos-mcp && npm installnpm run build- Test with:
MYTHOS_API_KEY=mtk_... MYTHOS_USERNAME=yourname node dist/index.js
Relationship to Other Repos
- mythos-claude-code โ the ๐Claude Code skill that wraps MCP tools with workflow patterns and auto-triggering. Uses HTTP transport directly, separate from this package.
- **studio-mythos-v3** โ the main MythOS platform repo. Contains a copy of the server code at
src/mcp/create-server.tsthat serves the HTTP transport on Railway. This npm repo is the canonical copy going forward.
How it Works
Architecture: TypeScript compiled to ESM, single dependency (@modelcontextprotocol/sdk), published to npm as mythos-mcp. The server makes direct fetch() calls to the MythOS ๐API โ no database, no state, no middleware. 7.5 kB published package.
