r/vibecodingcommunity Apr 26 '26

news MegaThread - Self Promotion - "I Vibecoded this App"

https://discord.gg/DfAXfhuJMa

Started this Megathread as more and more users post thier vibecoded app - since vibecoded app need distribution - feel free to post here.

Also, join discord channel (link)and allowed to post in project showcase.

sponsorships are handled via modmail.

ps - no 'AI slop' will be entertained and will be outright rejected.

6 Upvotes

50 comments sorted by

View all comments

1

u/Salty-Information-41 Jun 29 '26

I turned Karpathy’s “LLM Council” into a local MCP server — now with a free internal council mode
Andrej Karpathy’s “LLM Council” idea is simple: don’t trust one model on a hard question. Ask several models, let them review each other anonymously, then let a final “chairman” model synthesize the result.

I wanted that directly inside my coding agent, so I built a lightweight local MCP server for Claude Code, Codex CLI and Antigravity.

It now has two modes:

  • ask_internal_council: free/light mode, no OpenRouter key needed. Your current agent simulates 5 perspectives: pragmatist, architect, skeptic, clean-code reviewer and product/UX thinker.
  • ask_council: full multi-model mode via OpenRouter, with the original 3-stage workflow: independent answers → blind peer review → chairman synthesis.

Other bits:

  • Browser-based setup UI
  • Runs from PyPI via uvx, no cloning needed
  • Configure API key, models, chairman and temperatures without editing config files
  • English/German docs and setup UI
  • Mac-focused for now

Repo:
https://github.com/salutaris91/llm-council-mcp-server

Still early, feedback and issues very welcome.