LeadFunnel MCP
LeadFunnel MCP — Render
セッションをプロセスのRAMに保持するMCPサーバー。データベースなし、ディスクなし、キャッシュなし。
POST /cargar → Salesforce → depura → scorea → RAM
POST /mcp → Claude consulta (lee de RAM)
POST /purgar → RAM = null
GET /health → ¿está vivo? ¿hay sesión?Render が非アクティブでサービスを停止すると、プロセスが死に、データも一緒に消えます。これが一時性の保証です — TTL に依存しているわけではありません。
デプロイ
このリポジトリを GitHub(プライベート)にプッシュします。
Render → New → Web Service → リポジトリを接続します。
設定:
ランタイム: Node
ビルドコマンド:
npm install開始コマンド:
npm startヘルスチェックパス:
/health
環境変数
変数 | 値 |
|
|
| Connected App のコンシューマーキー |
| コンシューマーシークレット |
|
|
|
|
Related MCP server: Salesforce MCP Server
テスト
# Salud
curl https://TU-APP.onrender.com/health
# Cargar (tarda: hace todo el pull de Salesforce)
curl -X POST https://TU-APP.onrender.com/cargar \
-H "Authorization: Bearer $MCP_TOKEN"
# Handshake MCP
curl -X POST "https://TU-APP.onrender.com/mcp?k=$MCP_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"curl","version":"1"}}}'
# Purgar
curl -X POST https://TU-APP.onrender.com/purgar \
-H "Authorization: Bearer $MCP_TOKEN"Streamable HTTP で Accept ヘッダーに text/event-stream を指定するのは必須です。それがない場合、SDK はリクエストを拒否します。
Claude に接続する前に公式インスペクター:
npx @modelcontextprotocol/inspectorClaude に接続する
claude.ai → Customize → Connectors → + → Add custom connector
URL: https://TU-APP.onrender.com/mcp?k=TU_TOKEN
日々のワークフロー
起動時に
POST /cargarを実行しますClaudeから好きなだけ問い合わせます
長い時間離れていた場合、Render がサービスを停止しているはずです:
/cargarを再度実行します
既知の制限
コールドスタート。 無料ティアでは、約 15 分トラフィックがないと Render はサービスを停止します。次のリクエストで起動しますが(約 50 秒)その時点でセッションは失われています。気になるなら: 有料プランか、10 分ごとに /health を叩く cron(もしくはそのまま RAM 内にデータを無期限に保持し続けることになるが、それはまさに避けたいことだったはず)。
URL 内のトークン。 Claude のコネクタ UI では任意のヘッダーを設定できません。クエリパラメータのトークンはヘッダーより弱いです: コネクタの設定に残り、ログにも残る可能性があります。次のステップは本当の OAuth 2.0 です。SDK で実現可能ですが、それはまた別のプロジェクトになります。
RAM。 12k 件のリードは JS オブジェクトで約 25 MB です。Render の無料ティアは 512 MB なので余裕はあります。ただし、データセットがもっと大きくなる場合はページネーションが必要になるでしょう。
保存されるデータ
フィールド | 保存されるもの |
姓名 | 保存 |
| 保存(レコードへのジャンプに使用) |
電話番号 | 保存しない |
電話番号 | マスク済み( |
マスク済み( | |
モチベーション | 長さのみ(テキスト内容は保存しない) |
ENMASCARAR_PII=false の場合は、電話番号とメールアドレスが完全な状態で保存されます。これはリスクを理解した上での判断です: この変数を false にすると、実際の候補者の連絡先データが、すべての問い合わせでモデルのコンテキストに入ることになります。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceAn MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.6153,172166MIT
- AlicenseAqualityCmaintenanceAn MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata for querying, modifying, and managing objects and records.75014MIT
- AlicenseAqualityDmaintenanceAn MCP server implementation that integrates Claude with Salesforce, enabling natural language interactions with Salesforce data and metadata.850MIT
- FlicenseNot gradedqualityCmaintenanceA read-only MCP server that exposes Telegram lead conversations to Claude for sales analysis, enabling lead summary, intent, stage, and follow-up insights.
Related MCP Connectors
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Cloud-hosted MCP server for durable AI memory
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/UcemaRepo/mcpfunnel'
If you have feedback or need assistance with the MCP directory API, please join our Discord server