@datalinc/verifyref-mcp 1.0.0

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 ADDED
@@ -0,0 +1,39 @@
1
+ # @datalinc/verifyref-mcp
2
+
3
+ Stdio bridge to the hosted VerifyRef MCP server for Claude Code, Cursor, and other agents. Published by [Datalinc](https://www.npmjs.com/org/datalinc).
4
+
5
+ Prefer the remote URL when your host supports Streamable HTTP:
6
+
7
+ `https://verifyref.com/api/mcp` with `Authorization: Bearer …`
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ VERIFYREF_API_KEY=rc_test_… npx @datalinc/verifyref-mcp
13
+ ```
14
+
15
+ Or in MCP config:
16
+
17
+ ```json
18
+ {
19
+ "mcpServers": {
20
+ "verifyref": {
21
+ "command": "npx",
22
+ "args": ["-y", "@datalinc/verifyref-mcp"],
23
+ "env": {
24
+ "VERIFYREF_API_KEY": "rc_test_…"
25
+ }
26
+ }
27
+ }
28
+ }
29
+ ```
30
+
31
+ ## Tools (proxied)
32
+
33
+ `get_account`, `list_candidates`, `get_candidate`, `upload_candidate_resume`, `match_candidates_to_job`, `update_candidate`, `create_reference_check`, `get_check`, `list_checks`, `purchase_credits`
34
+
35
+ Full workflow: https://verifyref.com/docs/agents · https://verifyref.com/AGENTS.md · https://verifyref.com/llms.txt
36
+
37
+ ## Registry
38
+
39
+ Publish to the official MCP Registry with `mcp-publisher` using `server.json` (namespace `com.verifyref/mcp`, DNS verify).
package/bin/stdio.mjs ADDED
@@ -0,0 +1,32 @@
1
+ #!/usr/bin/env node
2
+ /**
3
+ * Stdio bridge to the hosted VerifyRef MCP server.
4
+ * Usage:
5
+ * VERIFYREF_API_KEY=rc_test_… npx @datalinc/verifyref-mcp
6
+ * VERIFYREF_API_URL=https://verifyref.com/api/mcp (optional)
7
+ */
8
+ import { spawn } from "node:child_process";
9
+
10
+ const apiKey = process.env.VERIFYREF_API_KEY || process.env.VERIFYREF_API_TOKEN;
11
+ if (!apiKey) {
12
+ console.error(
13
+ "Missing VERIFYREF_API_KEY. Create a key at https://verifyref.com/team/api",
14
+ );
15
+ process.exit(1);
16
+ }
17
+
18
+ const url = process.env.VERIFYREF_API_URL || "https://verifyref.com/api/mcp";
19
+
20
+ const child = spawn(
21
+ "npx",
22
+ [
23
+ "-y",
24
+ "mcp-remote",
25
+ url,
26
+ "--header",
27
+ `Authorization: Bearer ${apiKey}`,
28
+ ],
29
+ { stdio: "inherit", shell: true },
30
+ );
31
+
32
+ child.on("exit", (code) => process.exit(code ?? 1));
package/package.json ADDED
@@ -0,0 +1,32 @@
1
+ {
2
+ "name": "@datalinc/verifyref-mcp",
3
+ "version": "1.0.0",
4
+ "description": "VerifyRef MCP stdio bridge — find and rank recruits via talent pool for Claude Code, Cursor, and other agents",
5
+ "type": "module",
6
+ "bin": {
7
+ "verifyref-mcp": "bin/stdio.mjs"
8
+ },
9
+ "files": [
10
+ "bin",
11
+ "README.md",
12
+ "server.json"
13
+ ],
14
+ "keywords": [
15
+ "mcp",
16
+ "mcp-server",
17
+ "verifyref",
18
+ "recruiting",
19
+ "talent-pool",
20
+ "reference-check",
21
+ "hiring-agent",
22
+ "recruitment-agent"
23
+ ],
24
+ "mcpName": "com.verifyref/mcp",
25
+ "license": "MIT",
26
+ "engines": {
27
+ "node": ">=18"
28
+ },
29
+ "dependencies": {
30
+ "mcp-remote": "^0.1.0"
31
+ }
32
+ }
package/server.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "com.verifyref/mcp",
3
+ "title": "VerifyRef",
4
+ "description": "AI agent recruiting: talent pool match, reference checks, credit packs via Stripe MPP",
5
+ "version": "1.0.0",
6
+ "remotes": [
7
+ {
8
+ "type": "streamable-http",
9
+ "url": "https://verifyref.com/api/mcp"
10
+ }
11
+ ],
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "identifier": "@datalinc/verifyref-mcp",
16
+ "version": "1.0.0",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "environmentVariables": [
21
+ {
22
+ "name": "VERIFYREF_API_KEY",
23
+ "description": "rc_test_ or rc_live_ API key from https://verifyref.com/team/api",
24
+ "isRequired": true,
25
+ "isSecret": true
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ }