# MCP Server

Integrate your applications with external data and tools seamlessly. Enhance your LLM capabilities by allowing them to interact with real-world resources and perform actions dynamically. Simplify the…

## Quick Start

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

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

# Get full schema for a tool
npx -y @smithery/cli@latest tool get Rapiernik/mcp-server get_company_job_postings

# Call a tool
npx -y @smithery/cli@latest tool call Rapiernik/mcp-server get_company_job_postings '{}'
```

## Tools (7)

- `get_company_job_postings`
- `initiate_company_job_postings_collection`
- `initiate_company_posts_collection`
- `get_company_posts`
- `initiate_companies_data_collection`
- `get_companies_data`
- `get_employee_work_email`

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

---

Source: https://github.com/Rapiernik/mcp-server
