padlet-mcp

padlet-mcp

An MCP server wrapping the Padlet REST API, enabling Claude Code to read and write Padlet boards.

Category
Visit Server

README

padlet-mcp

Padlet REST API를 감싸는 MCP 서버. Claude Code가 Padlet 보드를 읽을 수 있게 해준다. 읽기 전용 — 글쓰기/수정/삭제는 안 됨.

1. 설치

Python 3.10+ 만 있으면 된다 (uv 등 추가 도구 불필요):

pip install --user git+https://github.com/teamsparta-biz/padlet-mcp

새 버전이 올라온 뒤 갱신하려면:

pip install --user --upgrade git+https://github.com/teamsparta-biz/padlet-mcp

2. API 키 받기

공용 biz 계정으로 로그인해서 https://padlet.com/settings/api 에서 키 값을 복사한다. 팀 전체가 공유하는 유일한 키이니 외부 공개 채널이나 커밋에는 올리지 말 것.

복사한 키는 Claude Code한테 그대로 던져주고 "이 키로 padlet-mcp 설정해줘"라고 하면 알아서 저장하고 연동까지 해준다.

3. 설치 확인 (테스트)

Claude Code에 등록하기 전에, 키 설정이 맞는지 먼저 확인하자.

가장 간단한 방법 — Padlet API를 직접 호출해서 실제 보드 목록이 나오는지 확인:

python -c "from padlet_mcp.server import list_boards; import json; print(json.dumps(list_boards(), indent=2))"

에러 없이 본인 보드 목록(JSON)이 출력되면 키 설정이 정상이라는 뜻이다. (한글은 \uXXXX로 이스케이프되어 나오는 게 정상 — Windows 콘솔 인코딩 때문이며 실제 값은 깨지지 않는다.)

MCP 프로토콜 그대로 테스트하고 싶다면 (MCP Inspector 사용, Node.js 필요):

npx @modelcontextprotocol/inspector python -m padlet_mcp

브라우저가 열리면 list_boards/get_board 툴을 직접 호출해볼 수 있다.

4. Claude Code에 등록

프로젝트 루트에서:

claude mcp add padlet --scope project -- python -m padlet_mcp

또는 .mcp.json에 직접 추가:

{
  "mcpServers": {
    "padlet": {
      "type": "stdio",
      "command": "python",
      "args": ["-m", "padlet_mcp"],
      "env": {}
    }
  }
}

claude mcp listpadlet이 떠 있는지, 도구가 정상 등록됐는지 확인.

5. 문제 해결

  • "Padlet API 키를 찾을 수 없습니다" — 2단계의 키 저장이 안 된 것. Claude Code한테 다시 키를 주고 설정해달라고 하면 된다.
  • pip install 시 "script ... is not on PATH" 경고 — 무시해도 된다. python -m padlet_mcp로 실행하므로 Scripts 폴더가 PATH에 없어도 상관없다.
  • Claude Code에서 padlet 툴이 안 보임.mcp.json 등록 후 Claude Code를 재시작해야 반영된다.

로컬 개발 (기여자용)

이 저장소를 clone해서 직접 고칠 때는 uv를 쓰면 편하다 (필수는 아님, pip install -e .로도 가능):

uv sync
uv run padlet-mcp

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured