# roundHR MCP

roundHR MCP

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add GoodGoodCo/roundhr-mcp-server

# Browse available tools
npx -y @smithery/cli@latest tool list GoodGoodCo/roundhr-mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get GoodGoodCo/roundhr-mcp-server get_data_model

# Call a tool
npx -y @smithery/cli@latest tool call GoodGoodCo/roundhr-mcp-server get_data_model '{}'
```

## Direct MCP Connection

Endpoint: `https://round-mcp.run.tools`

## Tools (3)

- `get_data_model` — 채용 관련 데이터에 대한 스키마 입니다. 해당 정보로 쿼리를 생성 할 수 있습니다. 쿼리가 생성되면 query_data tool 을 호출 하여 결과를 알 수 있습니다.
- `query_data` — 쿼리를 실행시키면 데이터를 리턴합니다.
- `search_guide` — 가이드 문서를 검색합니다. 사용법, 기능 설명, FAQ 등을 찾을 수 있습니다.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get GoodGoodCo/roundhr-mcp-server <tool-name>
```

---

Source: https://github.com/GoodGoodCo/roundhr-mcp-server
