Unlocking the built-in browser: markdown, dashboards, and LLM chat inside MindManager
Voting Open
Most people dismiss the built-in browser as "that old IE thing." It's actually a universal integration surface.
Run a localhost Python server → MindManager's browser renders whatever it serves. No plugins, no API keys, just HTTP and HTML.
I use it for three things:
- Markdown (done) — server converts .md to HTML on the fly. Browse all my notes inside MindManager.
- Dashboards — AI agents write status files, server auto-refreshes them as HTML. Live agent monitoring next to my map.
- LLM chat (pending, for autoclaw, openclaw's gateway at localhost:18789) — building a chat UI on localhost. Talk to AI agents directly in MindManager's browser panel. Mind map left, assistant right.
The server does the heavy lifting (talks to modern APIs, serves basic HTML). MindManager's old browser only needs to display it. Any local HTTP service works — databases, file browsers, cron monitors. If it serves HTML, it works.
Python
from http.server import HTTPServer, SimpleHTTPRequestHandler
import markdown, os
class Handler(SimpleHTTPRequestHandler):
def do_GET(self):
path = self.path.strip('/')
if path.endswith('.md') and os.path.exists(path):
html = markdown.markdown(open(path).read())
self.send_response(200)
self.send_header('Content-Type', 'text/html')
self.end_headers()
self.wfile.write(f'<html><body>{html}</body></html>'.encode())
else:
super().do_GET()
HTTPServer(('localhost', 5002), Handler).serve_forever()Run it, open http://localhost:5002/yourfile.md in MindManager's browser. Done. Anyone else using the built-in browser for something interesting?
I like this idea
my mm2020's browser is very old, and i dont trust it - dont have many anti privacy features in modern chrome.
so in my win10's firewall , which i use simplewall, i blocked mindmanager.exe,
and this browser could then only access local service, which is safer.
my mm2020's browser is very old, and i dont trust it - dont have many anti privacy features in modern chrome.
so in my win10's firewall , which i use simplewall, i blocked mindmanager.exe,
and this browser could then only access local service, which is safer.
---