agentdevx for LangChain
io.github.mirajmahmudul/agentdevx
Give your AI hands. Identity, credential vault, and API gateway for autonomous agents.
client:LangChain
transport:streamable-http
tools:38
Install agentdevx in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"agentdevx": {
"transport": "streamable_http",
"url": "https://agentdevx.onrender.com/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs
What LangChain can do once it is connected
- public-holidays.getPublicHolidays
- public-holidays.getAvailableCountries
- jsonplaceholder.getPosts
- jsonplaceholder.getPost
- jsonplaceholder.createPost
- jsonplaceholder.getUsers
- exchange-rate.getLatestRates
- github-api.getRepo
- github-api.listRepoIssues
- github-api.searchRepos
- open-weather.getCurrentWeather
- open-weather.getForecast
- petstore-api.addPet
- petstore-api.updatePet
- petstore-api.findPetsByStatus
- petstore-api.findPetsByTags
- petstore-api.getPetById
- petstore-api.updatePetWithForm
- petstore-api.deletePet
- petstore-api.uploadFile
- petstore-api.getInventory
- petstore-api.placeOrder
- petstore-api.getOrderById
- petstore-api.deleteOrder