Categories

Network Chart Generator

Interactive network relationship graph for visualizing social networks, topological structures, and node connections

JSON format network data with nodes and edges arrays. Nodes: id, label, group, size, color. Edges: source, target, weight, color, label

Main title of the network chart

Whether to display node labels

Whether to display edge labels

Default size of nodes in pixels

Default width of edges in pixels

Ideal distance between connected nodes (force layout)

Repulsion force between nodes (negative value)

Animation duration in milliseconds

API Documentation

Request Endpoint

POST /en/api/tools/network-chart

Request Parameters

Parameter Name Type Required Description
networkData textarea Yes JSON format network data with nodes and edges arrays. Nodes: id, label, group, size, color. Edges: source, target, weight, color, label
chartTitle text No Main title of the network chart
layoutAlgorithm select No -
showLabels checkbox No Whether to display node labels
showEdgeLabels checkbox No Whether to display edge labels
colorScheme select No -
nodeSize text No Default size of nodes in pixels
edgeWidth text No Default width of edges in pixels
linkDistance text No Ideal distance between connected nodes (force layout)
nodeStrength text No Repulsion force between nodes (negative value)
animationDuration text No Animation duration in milliseconds

Response Format

{
  "result": "
Processed HTML content
", "error": "Error message (optional)", "message": "Notification message (optional)", "metadata": { "key": "value" } }
HTML: HTML

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-network-chart": {
      "name": "network-chart",
      "description": "Interactive network relationship graph for visualizing social networks, topological structures, and node connections",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=network-chart",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]