소스 정보
- 저장소
- open-wa/wa-automate-nodejs
- 최근 소스 활동
- 2026년 4월 13일 23:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3,644
- 포크
- 722
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/open-wa/wa-automate-nodejs --skill easy-api-mcp명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | easy-api-mcp |
| description | Teaches AI agents how to connect to the open-wa hosted MCP surface via Easy API. |
This skill teaches AI agents how to connect to and use the open-wa MCP integration hosted through Easy API.
open-wa exposes a hosted MCP endpoint that wraps every Easy API method as a discoverable MCP tool. This is the recommended surface for AI agent integration.
The MCP endpoint uses Streamable HTTP transport — a single endpoint handles all operations:
POST /mcp — JSON-RPC messages (initialize, tools/list, tools/call)GET /mcp — Server-initiated SSE stream when neededDELETE /mcp — Session terminationEvery request must include your Easy API key. Without it, you get 401 Unauthorized.
Methods to provide the key:
X-API-Key: YOUR_API_KEYClaude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"open-wa": {
"url": "http://localhost:8080/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Cursor / Windsurf: Add MCP server with URL http://localhost:8080/mcp and set X-API-Key header. Note: Cursor currently calls Streamable HTTP by the name "SSE" in its UI dropdown.
| Scenario | Use |
|---|---|
| AI agent interacting with WhatsApp | Hosted MCP (this) |
| Local CLI tool or IDE integration | Hosted MCP via Streamable HTTP |
| Custom SDK integration in your own app | createClient() directly (no MCP) |
Tools are namespaced:
messages.sendText — Send a text messagechats.getAll — Get all chatsgroups.create — Create a groupUse tools/list (MCP protocol) to discover all available tools.
For debugging, visit /meta/mcp-tools.json on the API host.
createClient().apiKey. No key = server refuses to start.Your API key is missing or wrong. Verify:
apiKey in config.jsonX-API-Key header with the correct valuemcp.enabled is trueMCP requires Easy API apiKey. Refusing to start with MCP enabled and no apiKey configured.
Set apiKey in your config before enabling MCP.
The schema registry has no methods registered. The open-wa runtime may not have fully initialized.
The WhatsApp session isn't ready yet. Wait for the session to be fully connected before calling tools.