一个模型上下文协议(MCP)服务器,用于创建和管理具有 web3 功能的 Framer 插件。此服务器提供了创建、构建和管理具有集成 web3 特性的 Framer 插件的工具,如钱包连接、合约交互和 NFT 显示。
git clone https://github.com/sheshiyer/framer-plugin-mcp.git
cd framer-plugin-mcp
npm install
npm run build
将服务器添加到您的 MCP 设置文件中:
对于 Claude 桌面应用 (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"framer-plugin": {
"command": "node",
"args": ["/path/to/framer-plugin-mcp/build/index.js"]
}
}
}
对于 Cursor/Claude Dev (~/Library/Application Support/Cursor/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json):
{
"mcpServers": {
"framer-plugin": {
"command": "node",
"args": ["/path/to/framer-plugin-mcp/build/index.js"]
}
}
}
配置完成后,服务器提供以下工具:
创建一个新的具有 web3 功能的 Framer 插件项目。
参数:
示例:
{
"name": "my-web3-plugin",
"description": "具有 web3 功能的 Framer 插件",
1. outputPath: "./plugins/my-web3-plugin",
2. web3Features: ["wallet-connect", "nft-display"]
}
构建 Framer 插件项目以供生产使用。
参数:
示例:
{
"pluginPath": "./plugins/my-web3-plugin"
}
欢迎贡献!请随意提交拉取请求。
MIT 许可证 - 详情见 LICENSE 文件