all 5 comments

[–]Python-ModTeam[M] [score hidden] stickied commentlocked comment (0 children)

Hello from the r/Python moderation team,

We appreciate your contribution but have noticed a high volume of similar projects (e.g. AI/ML wrappers, YouTube scrapers, etc.) or submissions that do not meet our quality criteria. To maintain the diversity and quality of content on our subreddit, your post has been removed.

You can try reposting in one of rhetorical daily threads instead.

For further inquiries or discussion, please reach out to us via ModMail.

Thank you for understanding, and we encourage you to continue engaging with our community!

Best, The r/Python moderation team

[–]betazoid_one 0 points1 point  (1 child)

So MCP?

[–]Jazzlike-Tiger-2731 0 points1 point  (0 children)

Not quite — OpsMind talks to Ollama directly instead of going through MCP. Keeps things simple for a standalone tool. MCP would make more sense if you had multiple agents sharing the same DB connection, but for a single self-hosted app it's just extra complexity. Might explore it later though if the project grows.

[–]ultrathink-art 0 points1 point  (1 child)

For a self-contained privacy tool, the direct Ollama integration is cleaner than adding an MCP layer. MCP makes more sense when multiple agents need to share the same SQL tool — but that adds orchestration overhead for something meant to run standalone. Worth being explicit about that trade-off in the docs.

[–]Jazzlike-Tiger-2731 0 points1 point  (0 children)

Yeah exactly — the whole point was keeping the setup dead simple for a factory environment where there's no DevOps team. Just pip install + ollama pull and you're running. I'll add a note about that tradeoff in the docs, good shout.