How to Use the Endorsal Testimonials MCP in LangChain
Run LangChain agents that instantly pull reviews, audit social proof, and approve testimonials.
Works with every AI agent you already use
…and any MCP-compatible client
Connect Endorsal Testimonials MCP to LangChain
Create your Vinkius account to connect Endorsal Testimonials to LangChain and route execution through our secure gateway. The platform manages server hosting, runtime updates, and security layers. Configuration requires no manual server provisioning.
Automate review approval chains in LangChain
`list_pending_testimonials` feeds raw, unapproved customer reviews directly into your LangChain ReAct agent's decision-making loop. The agent evaluates the sentiment of each incoming review, filters out obvious spam, and determines if the submission matches your brand guidelines. Once the agent verifies the review is clean, it triggers `approve_pending_testimonial` to publish it immediately. This automated chain cuts down manual moderation time from hours to seconds while maintaining a strict quality filter.
Audit widget performance across properties
`quick_social_proof_audit` gives your LangChain chain a high-level summary of all active widgets and recent testimonial volume. Your agent uses this metric-driven snapshot to detect sudden drops in customer submissions or widget engagement. By chaining this audit with `list_account_properties`, the agent flags which specific websites are missing active social proof display widgets. This lets you run scheduled diagnostic chains that keep your conversion assets healthy across all domains.
Inject contextual reviews into agent outputs
`search_testimonials_by_keyword` lets your LangChain pipeline search for specific customer quotes using names or target keywords. This tool pulls exact matches to dynamically insert real user feedback into outbound sales drafts or support responses. The chain then feeds the results to `get_testimonial_details` to extract the exact star rating and customer avatar URL. LangSmith traces the entire retrieval process, ensuring your MCP agent never pulls irrelevant or low-rated reviews.
Set up Endorsal Testimonials MCP in LangChain
Prerequisites
- Python 3.10+ installed
-
langchain-mcp-adapters+langgraphpackages - Active Vinkius subscription with a valid endpoint token
- 1
Install dependencies
Run
pip install langchain-mcp-adapters langgraph langchain-openai. The MCP adapters package converts MCP tools into native LangChainBaseToolobjects. - 2
Connect via HTTP transport
Use
MultiServerMCPClientwith"transport": "http"pointing to your Vinkius endpoint. Replace[YOUR_TOKEN_HERE]with your token from cloud.vinkius.com. - 3
Create a ReAct agent
Pass the discovered tools to
create_react_agent()from LangGraph. The agent automatically routes Endorsal Testimonials tool calls through the MCP protocol. - 4
Run with any LLM
Swap
ChatOpenAIforChatAnthropic,ChatGoogleGenerativeAI, or any LangChain-compatible model. The MCP tools work identically across all providers.
from langchain_mcp_adapters.client import MultiServerMCPClient
from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
async with MultiServerMCPClient({
"endorsal-testimonials-mcp": {
"transport": "http",
"url": "https://edge.vinkius.com/[YOUR_TOKEN_HERE]/mcp",
}
}) as client:
tools = client.get_tools()
agent = create_react_agent(
ChatOpenAI(model="gpt-4o"),
tools,
)
result = await agent.ainvoke({
"messages": "List recent Endorsal Testimonials transactions"
})
print(result["messages"][-1].content) Independent Platform Disclaimer: Vinkius is an independent platform and is not affiliated with, endorsed by, sponsored by, verified by, or otherwise authorized by Endorsal Testimonials. All third-party trademarks, logos, and brand names are the property of their respective owners. Their use on this website is strictly for informational purposes to identify service compatibility and interoperability.
Why Choose Vinkius
Vinkius connects your tools to AI with real-time monitoring and automatic cost savings — all from one dashboard.
Real-time monitoring
Live
visibility into every interaction
Connect your favorite tools to your AI and see exactly what's happening — every request, every response, in real time.
Built-in savings
60%
lower AI costs
Vinkius compresses data between your apps and your AI automatically. Lower bills every month — no configuration required.
Single dashboard
One
place for every integration
Every tool your AI connects to, managed from a single screen. One account, complete control.
Common questions about Endorsal Testimonials MCP in LangChain
Use it with your favorite AI tools
Connect this server to Cursor, Claude, VS Code, and more.
Start using the Endorsal Testimonials MCP today
We host it, we monitor it, we maintain it. You just paste one token.