Slack

Stay aligned with teammates and get instant updates — without switching tabs.

Tool details

Available Tools

API Explorer

Make test API calls and inspect JSON responses in real time.

CSV Parser

Upload CSV files and quickly extract structured data.

Markdown Previewer

Instantly convert and preview Markdown text in a clean format.

Python SDK

Easily integrate Python with APIs

Typescript coder

Generate strongly-typed code in TS.

Json formatter

Format and validate JSON instantly

Paste and run this command to setup
{ "tasks": [ { "id": 1, "title": "Finish Webflow CMS setup", "due": "2025-09-10", "completed": false, "tags": ["webflow", "cms", "design"] }, { "id": 2, "title": "Write Python demo code", "due": "2025-09-12", "completed": true, "tags": ["]()
Copy paste image icon
After running this command restart this cursor to start using the server.
View docs
Paste and run this command to setup
from typing import List, Dict import datetime class Task: def __init__(self, title: str, due_date: str, completed: bool = False): self.title = title self.due_date = datetime.datetime.strptime(due_date, "%Y-%m-%d") self.completed = completed def mark_complete(self): self.completed = True def __repr__(self): status = "✓" if self.completed else "✗" return f"[{status}] {self.title} (Due: {self.due_date.date()})" class TaskManager: def __init__(self): self.tasks: List[Task] = [] def add_task(self, title: str, due_date: str): self.tasks.append(Task(title, due_date)) def get_pending(self) -> List[Task]: return [task for task in self.tasks if not task.completed] def get_completed(self) -> List[Task]: return [task for task in self.tasks if task.completed] def show_all(self): for task in self.tasks: print(task) if __name__ == "__main__": manager = TaskManager() manager.add_task("Finish Webflow CMS setup", "2025-09-10") manager.add_task("Write Python demo code", "2025-09-12") manager.add_task("Deploy project", "2025-09-20") print("\n--- All Tasks ---") manager.show_all() print("\n--- Marking first task complete ---") manager.tasks[0].mark_complete() print("\n--- Pending Tasks ---") print(manager.get_pending()) print("\n--- Completed Tasks ---") print(manager.get_completed())
Copy paste image icon
After running this command restart this cursor to start using the server.
View docs
Paste and run this command to setup
#!/usr/bin/env python3 """ Simple CLI Task Manager """ import json import os from typing import List, Dict class Task: def __init__(self, title: str, due: str, completed: bool = False): self.title = title self.due = due self.completed = completed def mark_done(self): self.completed = True def to_dict(self) -> Dict: ret
Copy paste image icon
After running this command restart this cursor to start using the server.
View docs

Communication Apps

Over 20+ ways to stay connected and collaborate in real time.
New

linkedin

Linkedin MCP
New

Zoom

Connect meetings, share updates, and keep collaboration flowing in real time.
New

Discord

Bridge async and live team communication with channels, voice, and activity sync.
New

Click Up

Sync tasks and timelines across your workspace for better visibility and speed.
New

Google Meet

Join calls, sync calendars, and bring live conversations into your daily workflow.
New

Loom

Embed quick video updates and walkthroughs directly into your workspace.

Product & Design Apps

8+ tools to boost your creative process and streamline delivery.
New

Figma

Embed designs, track changes, and stay in sync with your creative process.
New

Chat GPT

Bring smart suggestions, summaries, and AI copilots directly into your workflow.
New

Claude

Use AI to streamline writing, decision-making, and data summarization.
New

Notion

Link docs, notes, and knowledge bases to power your team’s thinking.
New

Zapier

Automate repetitive tasks by connecting thousands of apps — no code needed.
New

GitHub

Track code changes, issues, and pull requests alongside your projects.

Communication Apps

Over 20+ ways to stay connected and collaborate in real time.

linkedin

Linkedin MCP

Zoom

Connect meetings, share updates, and keep collaboration flowing in real time.

Discord

Bridge async and live team communication with channels, voice, and activity sync.

Click Up

Sync tasks and timelines across your workspace for better visibility and speed.

Google Meet

Join calls, sync calendars, and bring live conversations into your daily workflow.

Loom

Embed quick video updates and walkthroughs directly into your workspace.

Product & Design Apps

8+ tools to boost your creative process and streamline delivery.

Figma

Embed designs, track changes, and stay in sync with your creative process.

Chat GPT

Bring smart suggestions, summaries, and AI copilots directly into your workflow.

Claude

Use AI to streamline writing, decision-making, and data summarization.

Notion

Link docs, notes, and knowledge bases to power your team’s thinking.

Zapier

Automate repetitive tasks by connecting thousands of apps — no code needed.

GitHub

Track code changes, issues, and pull requests alongside your projects.