GerardoBaro/clio
3.1
If you are the rightful owner of clio and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Clio is a personal assistant MCP server designed to enhance productivity and streamline tasks through advanced model context protocol technology.
Clio
A personal assistant MCP server
Running the MCP server
- Install dependencies and compile the TypeScript sources:
npm install npm run build - Ensure
.envis populated with Supabase credentials (SUPABASE_URL,SUPABASE_SERVICE_ROLE_KEY,SUPABASE_ANON_KEY) and that thesupabase db pushcommand has been run against your project. - Start the MCP server over stdio:
npm start
When the process logs Clio MCP server ready on stdio transport., it is ready for an LLM client.
Connecting an LLM client (example)
You can exercise the server with any MCP-aware client. For example, using the MCP Inspector:
- Install the inspector globally (if needed):
npx @modelcontextprotocol/inspector - In the inspector UI, add a new stdio server with:
- Command:
npm - Args:
["run", "dev"] - Working directory: the root of this repository.
- Command:
- Once connected, call the
collections.createtool with:{ "ownerId": "2a96f6e6-6dfe-4aec-8f18-5ef2a467e1d6", "name": "Inspector test collection", "structureProxy": {} } - Follow up with
collections.listfor the sameuserIdto verify the entry round trip.
Any MCP-compatible IDE integration (Claude Code, VS Code Copilot MCP, Cursor, etc.) can be configured similarly by pointing it at the stdio command.