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.
Files changed (2) hide show
  1. package/README.md +47 -16
  2. 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
- ## Setup
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
- ### Install & Build
101
+ ## MCP Configuration
102
+
103
+ ### Claude Code (npx — no install needed)
88
104
 
89
105
  ```bash
90
- pnpm install
91
- pnpm build
106
+ claude mcp add hirebase -- npx -y hirebase-mcp
92
107
  ```
93
108
 
94
- ### Environment Variables
109
+ Then set your OpenAI API key:
95
110
 
96
- ```env
97
- OPENAI_API_KEY=sk-your-key-here
98
- LANCEDB_PATH=./data/lancedb # optional, default: ./data/lancedb
99
- EMBEDDING_MODEL=text-embedding-3-large # optional
100
- EXTRACTION_MODEL=gpt-5-mini # optional
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
- ### MCP Configuration
125
+ ### Claude Desktop
104
126
 
105
- Add to your Claude Code or Claude Desktop config:
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": "node",
112
- "args": ["<path-to-project>/dist/interface/cli/index.js"],
133
+ "command": "npx",
134
+ "args": ["-y", "hirebase-mcp"],
113
135
  "env": {
114
136
  "OPENAI_API_KEY": "sk-your-key",
115
- "LANCEDB_PATH": "<path-to-project>/data/lancedb"
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hirebase-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "HireBase - AI-powered CV search engine with LanceDB and MCP",
5
5
  "type": "module",
6
6
  "main": "dist/interface/cli/index.js",