hirebase-mcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -76,49 +76,80 @@ CV File (PDF/DOCX)
|
|
|
76
76
|
5. Gets full details with `get_cv_detail`
|
|
77
77
|
6. Produces match explanation
|
|
78
78
|
|
|
79
|
-
##
|
|
79
|
+
## Installation
|
|
80
|
+
|
|
81
|
+
### npm (recommended)
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
npm install -g hirebase-mcp
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### From source
|
|
88
|
+
|
|
89
|
+
```bash
|
|
90
|
+
git clone https://github.com/dolusoft/hirebase.git
|
|
91
|
+
cd hirebase
|
|
92
|
+
pnpm install
|
|
93
|
+
pnpm build
|
|
94
|
+
```
|
|
80
95
|
|
|
81
96
|
### Prerequisites
|
|
82
97
|
|
|
83
98
|
- Node.js >= 22
|
|
84
|
-
- pnpm
|
|
85
99
|
- OpenAI API Key
|
|
86
100
|
|
|
87
|
-
|
|
101
|
+
## MCP Configuration
|
|
102
|
+
|
|
103
|
+
### Claude Code (npx — no install needed)
|
|
88
104
|
|
|
89
105
|
```bash
|
|
90
|
-
|
|
91
|
-
pnpm build
|
|
106
|
+
claude mcp add hirebase -- npx -y hirebase-mcp
|
|
92
107
|
```
|
|
93
108
|
|
|
94
|
-
|
|
109
|
+
Then set your OpenAI API key:
|
|
95
110
|
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
111
|
+
```json
|
|
112
|
+
{
|
|
113
|
+
"mcpServers": {
|
|
114
|
+
"hirebase": {
|
|
115
|
+
"command": "npx",
|
|
116
|
+
"args": ["-y", "hirebase-mcp"],
|
|
117
|
+
"env": {
|
|
118
|
+
"OPENAI_API_KEY": "sk-your-key"
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
101
123
|
```
|
|
102
124
|
|
|
103
|
-
###
|
|
125
|
+
### Claude Desktop
|
|
104
126
|
|
|
105
|
-
Add to your Claude
|
|
127
|
+
Add to your Claude Desktop config (`claude_desktop_config.json`):
|
|
106
128
|
|
|
107
129
|
```json
|
|
108
130
|
{
|
|
109
131
|
"mcpServers": {
|
|
110
132
|
"hirebase": {
|
|
111
|
-
"command": "
|
|
112
|
-
"args": ["
|
|
133
|
+
"command": "npx",
|
|
134
|
+
"args": ["-y", "hirebase-mcp"],
|
|
113
135
|
"env": {
|
|
114
136
|
"OPENAI_API_KEY": "sk-your-key",
|
|
115
|
-
"LANCEDB_PATH": "
|
|
137
|
+
"LANCEDB_PATH": "./data/lancedb"
|
|
116
138
|
}
|
|
117
139
|
}
|
|
118
140
|
}
|
|
119
141
|
}
|
|
120
142
|
```
|
|
121
143
|
|
|
144
|
+
### Environment Variables
|
|
145
|
+
|
|
146
|
+
| Variable | Default | Description |
|
|
147
|
+
|---|---|---|
|
|
148
|
+
| `OPENAI_API_KEY` | *required* | OpenAI API key |
|
|
149
|
+
| `LANCEDB_PATH` | `./data/lancedb` | LanceDB storage path |
|
|
150
|
+
| `EMBEDDING_MODEL` | `text-embedding-3-large` | Embedding model |
|
|
151
|
+
| `EXTRACTION_MODEL` | `gpt-5-mini` | CV extraction model |
|
|
152
|
+
|
|
122
153
|
## Key Design Decisions
|
|
123
154
|
|
|
124
155
|
- **LanceDB has no UPDATE** — update is implemented as delete + add at repository level
|