Push selected Apple Notes content into any Ramifica list using Apple Shortcuts and the MCP API. Works on iPhone, iPad, and Mac.
Go to your account settings and open API Tokens. Create a token with read+write scope for the workspace containing the target list. Copy the token immediately — it is shown only once.
The shortcut uses add_items with a listName parameter. Open Ramifica, navigate to the list you want to send notes to, and note its exact name. Or omit the list name to send to your Inbox (auto-created if it does not exist).
Open the Shortcuts app on Mac or iPhone. Create a new shortcut that accepts Text from the Share Sheet. Add a "Get Contents of URL" action configured as follows:
https://ramifica.app/api/mcpContent-Type: application/json, Authorization: Bearer YOUR_TOKEN{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "add_items",
"arguments": {
"listName": "YOUR_LIST_NAME",
"items": [{ "content": "PROVIDED_INPUT", "depth": 0 }]
}
}
}In the Shortcuts app, use the "Shortcut Input" variable for the content field and ask-each-time or saved Text variables for the token and list name.
On success the API returns: { "added": 1, "listId": "..." }
A pre-built shortcut will be available for download soon. In the meantime, follow the manual setup above.
add_items call.