Connected Workspace MCP
Provides tools for interacting with Gmail, including searching and reading messages, sending new messages, replying in threads, and modifying labels.
Provides tools for interacting with Google Calendar, including listing, creating, updating, and deleting events, and querying free/busy periods.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Connected Workspace MCPcheck my calendar for tomorrow and email me the free time slots"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Connected Workspace MCP
A TypeScript stdio MCP server for Gmail, Google Calendar, and LinkedIn. It gives MCP-compatible assistants explicit tools for email, scheduling, professional profile access, and social publishing.
Gmail and Calendar share one Google OAuth grant. LinkedIn uses a separate OAuth grant. Both providers persist tokens outside the package directory so the server can restart without repeated authorization.
Install
Requires Node.js 20 or newer.
npm install --global connected-workspace-mcpConfigure the provider credentials described in the auth guides, then run:
connected-workspace-google-auth
connected-workspace-linkedin-auth
connected-workspace-mcpWith npx, keep credentials in a private file and pass only its path:
npx -y connected-workspace-mcp --env-file "C:\Users\you\.connected-workspace-mcp\.env"LinkedIn is optional. The server can run with only Google configured.
Related MCP server: MCP Google Workspace Server
MCP Host Configuration
{
"servers": {
"connected-workspace": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"connected-workspace-mcp",
"--env-file",
"C:\\Users\\you\\.connected-workspace-mcp\\.env"
]
}
}
}The process can instead inherit provider environment variables directly. Never pass client secrets or tokens as command-line arguments.
Documentation
Capabilities
Gmail tools search and read messages, send new messages, reply in threads, and modify labels. Calendar tools list, create, update, and delete events, and query free/busy periods. LinkedIn tools read the authenticated profile and posts, inspect available engagement, publish text or image posts, and delete owned posts.
Standard LinkedIn APIs do not support arbitrary edits to profile fields such as headline, experience, or skills. Available endpoints depend on the products and permissions approved for the LinkedIn app.
Local Development
npm install
Copy-Item .env.example .env
npm run auth:google
npm run auth:linkedin
npm run build
npm startRun the deterministic mocked test suite and project checks with:
npm test
npm run check
npm run format:checkTests never contact live providers or mutate real accounts.
Contributing
Contributions are welcome. Read CONTRIBUTING.md for project structure, security requirements, validation commands, and pull-request guidance.
Security
Never commit .env, token files, or logs. The JSON-lines logger excludes tool
arguments, message bodies, post content, and credentials. Configure your MCP
host to require confirmation before write tools send email, modify calendars,
or publish and delete LinkedIn posts.
License
Licensed under the MIT License.
This server cannot be deployed
Maintenance
Related MCP Connectors
Permissioned access to Gmail, Drive and Calendar via the user's own Google account
PerfectPost is a LinkedIn content management platform. This MCP server gives AI assistants read and write access to a user's PerfectPost account: published posts with their engagement analytics, drafts lifecycle (create / edit / schedule), and LinkedIn profile data.
Hosted MCP server with managed OAuth for 15+ toolkits: Google Workspace, Fitbit, Oura, Kalshi, etc.
Email infrastructure for AI agents — send, receive, search, and reply to email over MCP.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides natural language control over Google Workspace services (Calendar, Drive, Gmail, Docs, Sheets, Slides, Forms, Tasks, Chat) via MCP, with OAuth 2.1 multi-user authentication.100MIT
- AlicenseBqualityCmaintenanceExposes Gmail (send/draft) and Google Docs (append) capabilities as tools for any MCP-compliant agent.370 npmISC
- AlicenseNot gradedqualityBmaintenanceEnables MCP-compatible AI agents to create Gmail drafts, send emails, and append content to Google Docs with OAuth-secured authentication.19 npmMIT
- AlicenseAqualityBmaintenanceEnables AI assistants to access and manage Google Drive, Sheets, Docs, Calendar, and Gmail through OAuth2-authenticated MCP tools.27MIT