Langflow · Example Payload

Langflow List Mcp Servers Example

AIArtificial IntelligenceAgentsWorkflowsLow-CodeVisual BuilderLangChainRAGMCPOpen SourceFastAPI

Langflow List Mcp Servers Example is an example object payload from Langflow, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "http://localhost:7860/api/v2/mcp/servers",
    "headers": {
      "x-api-key": "{{LANGFLOW_API_KEY}}"
    }
  },
  "response": {
    "status": 200,
    "body": [
      {
        "name": "filesystem",
        "config": {
          "command": "npx",
          "args": ["-y", "@modelcontextprotocol/server-filesystem", "/Users/me/Documents"]
        },
        "is_connected": true,
        "tools_count": 11
      },
      {
        "name": "github",
        "config": {
          "url": "https://api.githubcopilot.com/mcp",
          "headers": {"Authorization": "Bearer ghp_***"}
        },
        "is_connected": true,
        "tools_count": 26
      }
    ]
  }
}