@rb2b/rb2b-apis-mcp 1.1.4 → 1.1.5

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/dist/init.js CHANGED
@@ -65,6 +65,7 @@ async function main() {
65
65
  else {
66
66
  console.log("RB2B MCP Server — Initial Setup");
67
67
  console.log("=================================\n");
68
+ console.log("Don't have an API key? Sign up at https://ui.api.rb2b.com\n");
68
69
  }
69
70
  const input = await prompt(existing
70
71
  ? "Enter a new RB2B API key (or press Enter to keep the existing one): "
package/dist/server.js CHANGED
@@ -43,7 +43,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => ({
43
43
  tools: [
44
44
  {
45
45
  name: "set_api_key",
46
- description: "Update the RB2B API key. The new key is validated before saving and takes effect immediately. Cost: free.",
46
+ description: "Update the RB2B API key. The new key is validated before saving and takes effect immediately. Cost: free. Don't have an API key? Sign up at https://ui.api.rb2b.com.",
47
47
  inputSchema: {
48
48
  type: "object",
49
49
  properties: {
@@ -301,6 +301,7 @@ server.setRequestHandler(CallToolRequestSchema, async (req) => {
301
301
  case "help":
302
302
  result = {
303
303
  description: "RB2B MCP Server — Identity Resolution & Enrichment Tools",
304
+ signup: "Don't have an API key? Sign up at https://ui.api.rb2b.com.",
304
305
  rate_limit: "50 requests/second per endpoint. When processing batches, stay within this limit.",
305
306
  tools: [
306
307
  { name: "help", cost: creditLabel(0), input: "none", description: "List all available tools (this command)" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rb2b/rb2b-apis-mcp",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "MCP server exposing RB2B API tools for identity resolution and enrichment",
5
5
  "type": "module",
6
6
  "main": "dist/server.js",