funpay-mcp
by DKeken·★ 0·综合分 36
FunPay.com 的 MCP 服务器,支持配置文件管理和批量复制交易品。
概述
funpay-mcp 服务器通过模型上下文协议与 FunPay.com 提供全面的集成。它支持在操作系统钥匙串中管理多个卖家配置文件,对交易品执行创建、读取、更新和删除操作,并能高效地在多个子类别中克隆物品。该服务器处理 FunPay 特定的身份验证要求,包括 golden_key Cookie 和 CSRF 令牌,并通过 Cookie 维护会话持久性。使用 TypeScript 和 Bun 构建,利用 Bun.secrets 等现代运行时功能实现安全的凭证管理。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
如果你需要以编程方式管理 FunPay 市场列表并且已经在使用 Bun 作为运行时,请选择这个 MCP 服务器。
什么时候不要选它
如果你需要在 FunPay 之外的市场集成,或者不愿意使用 Bun 作为运行时依赖,请不要选择它。
此 server 暴露的工具
从 README 抽取出 11 个工具set_golden_keySave/update a profile with golden_key to OS keychain
list_profilesList saved profiles with masked keys and active status
use_profileSwitch active profile
delete_profileRemove a profile and its keychain entry
whoamiVerify authentication and return user ID/CSRF info
get_lotGet compact view of a lot's offerEdit form
get_lot_rawGet full JSON dump of a lot (higher token cost)
get_node_schemaList select-field options for a subcategory
create_lotCreate a new offer in a specified node
update_lotEdit an existing offer (price, stock, text, images)
clone_lotCopy one lot into multiple target nodes with overrides
可对比工具
安装
git clone https://github.com/DKeken/funpay-mcp.git
cd funpay-mcp
bun install在 Claude Code 中注册,编辑 ~/.claude.json:
{
"mcpServers": {
"funpay": {
"type": "stdio",
"command": "bun",
"args": ["run", "/absolute/path/to/funpay-mcp/index.ts"],
"env": {}
}
}
}FAQ
- 如何获取我的 FunPay golden_key?
- 在 funpay.com 登录后,打开开发者工具 → 应用程序 → Cookie → funpay.com,复制 golden_key 的值。
- 我的凭据存储在哪里?
- 当 Bun.secrets 可用时,凭据存储在操作系统钥匙串中;否则存储在配置文件中。
funpay-mcp 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。