1. Create your Pear account
Sign up at pearmcp.com and connect iCloud or Microsoft 365. Pear's documented Cline path uses a Bearer header with a Pear API key stored in Cline's local settings.
Sign Up Free2. Add Pear from Remote Servers
Cline's official remote-server flow recommends Streamable HTTP for new remote MCP servers. In VS Code, open Cline's MCP Servers view, choose Remote Servers, then add:
Server name
PearTransport
Streamable HTTPServer URL
https://pearmcp.com/api/mcp3. Authenticate and test
In MCP Servers, open Configure, then Configure MCP Servers. Merge this entry into the extension's local settings, replacing only the placeholder with your Pear API key. Keep this credential file private. The explicit transport avoids Cline's legacy SSE default.
{
"mcpServers": {
"pear": {
"type": "streamableHttp",
"url": "https://pearmcp.com/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_PEAR_API_KEY"
},
"disabled": false,
"autoApprove": []
}
}
}- Add an
AuthorizationBearer header using the Pear API key stored in local Cline settings. - Confirm the server is connected before asking for write actions.
- Ask Cline to run pear_provider_status, then try a calendar or mail lookup. Leave autoApprove empty to review tool requests.
- Keep the token in local Cline settings or a supported secret store, not a repository file.
Apple Reminders compatibility
Apple Reminders availability depends on the Apple account. For Apple, Pear can read and write only the legacy reminder lists Apple still exposes through CalDAV. If the account has been upgraded to Apple's newer Reminders store, Pear cannot access those native lists and does not copy them into a separate reminder store. Apple may instead return compatibility placeholders, such as repeated "Where are my reminders?" items; Pear did not create them. Pear's safe fallback hides known placeholders and blocks writes to affected lists. Reconnecting iCloud or replacing the App-Specific Password will not change this Apple limitation. Calendar, Contacts, and Mail are unaffected, and Microsoft To Do uses Microsoft Graph and is unaffected. Full modern Apple Reminders access would require an Apple-platform companion using EventKit with the user's permission; Pear does not currently provide one.
Read the Apple Reminders compatibility note
