Raw MCP server
Point DorkOS at a remote tool server that manages its own sign-in
Raw MCP server
Some services run their own remote tool server that speaks MCP (the standard that lets AI tools talk to each other). If you already have one, you can point DorkOS straight at it. No middleman holds your login.
Where your login lives
The remote server holds its own sign-in. DorkOS never sees or stores its keys. Before you connect, DorkOS shows you this (with your server's name in place of "that server"):
This tool connects straight to that server. DorkOS doesn't store or see its keys, that server manages its own sign-in.
What you get
This path connects one account per server. It does not manage several accounts of the same service. If you need two accounts of one service, use the Composio path instead.
Set it up
Have a remote MCP server ready
You need a server you can reach over the web, with its own sign-in already set up. This is usually a server the service itself runs, or one you host.
Tell DorkOS about it in your config file
Raw MCP servers live in DorkOS's config file at ~/.dork/config.json, under connectors.rawMcpServers. Each entry names the service and where its server lives:
{
"connectors": {
"rawMcpServers": [
{
"slug": "notion",
"displayName": "Notion",
"url": "https://mcp.notion.example/mcp",
"transport": "http"
}
]
}
}The four fields:
slug: a short id for the service, likenotion. Lowercase, no spaces.displayName: the name you want to see on the Connections page, likeNotion.url: the server's address.transport: how DorkOS talks to it. Usehttpfor Streamable HTTP (most servers) orssefor older servers that stream over SSE (server-sent events, an older streaming style).
DorkOS reads this list when it starts. After you add or remove an entry, restart DorkOS to pick up the change.
Connect it
Open Connections in the sidebar. Your server now shows up as a tile in the Services grid. Click Connect and read the custody line. Your keys stay on the server, never on your computer.
Use it in a session
Open a session, then the right panel's Session tab. Attach the connection in the Connections group to let that session's agent use the server's tools.