展示HN:使用Notion和Claude构建职位信息数据库
我最近一直在使用Claude。当我需要为求职建立一个潜在客户列表时,我尝试让Claude来帮忙。
通过使用计算机和一些招聘网站,我能得到一些结果,但我并不认为Claude能找到我的下一份工作。后来我发现了一个聚合招聘网站的API,可以让你搜索工作。他们发布了一个开放API规范,Claude很快就为我搭建了一个MCP服务器。你可以在这里找到这个MCP服务器: [https://github.com/jhgaylor/hirebase-mcp](https://github.com/jhgaylor/hirebase-mcp)
这个工作流程很简单。
1. 在Notion中创建一个数据库,包含一些字段来存储关于工作的相关信息。
2. 提示Claude寻找我感兴趣的工作,Claude通过Playwright收集上下文,搜索Hirebase上的工作,并将结果更新到Notion中。
3. 重复步骤2,直到你有足够的潜在客户。
我的提示通常是这样的:
“寻找适合由 [https://jakegaylor.com/?hn=1](https://jakegaylor.com/?hn=1) 描述的候选人的工作,并将结果更新到Notion数据库‘求职2025’中。”
我的Claude配置安装了Playwright、Notion和Hirebase MCP服务器,可以在这里找到:[https://gist.github.com/jhgaylor/39243d71e03b49c775bd31e913f1e594](https://gist.github.com/jhgaylor/39243d71e03b49c775bd31e913f1e594)
查看原文
I have been using Claude for so much lately. And so when I needed to build a list of leads for my job search I tried to get Claude to do it.<p>With computer use and a list of job boards I could get some results but I didn't think Claude was going to find my next job. Then I found an api that aggregates job boards and lets you search for jobs. They publish an openapi spec and Claude made me an MCP server in no time. You can find the mcp server here: <a href="https://github.com/jhgaylor/hirebase-mcp">https://github.com/jhgaylor/hirebase-mcp</a><p>The workflow is simple.<p>1. Make a database in notion with some fields to store information about the job.<p>2.Prompt claude to find jobs I'd be interested in, claude gathers context with playwright, searches hirebase for jobs, and updates notion with the results.<p>3. Repeat Step 2 until you have enough leads.<p>My prompts usually look like this:<p>"Find jobs that would be a good fit for the candidate described by <a href="https://jakegaylor.com/?hn=1" rel="nofollow">https://jakegaylor.com/?hn=1</a> and update the notion database job search 2025 with the results".<p>My claude config installs playwright, notion, and hirebase mcp servers and can be found here: <a href="https://gist.github.com/jhgaylor/39243d71e03b49c775bd31e913f1e594" rel="nofollow">https://gist.github.com/jhgaylor/39243d71e03b49c775bd31e913f...</a>