Skip to main content
Glama
SorataYang

Qiao-MCP

by SorataYang

add_elastic_link

Create elastic links between structural nodes to simulate bearings and member connections. Specify stiffness, link type (general, rigid, tension-only, compression-only), gap, friction, and beta angle.

Instructions

    Add an elastic link between two nodes (添加弹性连接).

    Elastic links model connections like bearings between members.
    弹性连接用于模拟支座等节点间的连接关系。

    Args:
        start_node_id: Start node ID (起始节点编号)
        end_node_id: End node ID (终止节点编号)
        link_type: Link type (连接类型):
            1=General elastic (一般弹性连接), 2=Rigid (刚性连接),
            3=Tension-only (受拉弹性连接), 4=Compression-only (受压弹性连接)
        stiffness_values: Stiffness [kx, ky, kz, krx, kry, krz], ONLY for type=1
                          (刚度值列表,仅一般弹性连接需要)
        kx: Axial stiffness for tension/compression links, ONLY for type=3/4
            (受拉或受压刚度,仅受拉/受压连接需要)
        gap: Gap for tension/compression links (间隙)
        friction: Friction coefficient (摩擦系数)
        beta_angle: Beta angle in degrees (贝塔角)
        dis_ratio: Distance ratio from I-end, ONLY for type=1 (距i端距离比)
        group_name: Boundary group name (边界组名)

    Example:
        add_elastic_link(1, 2, link_type=1, stiffness_values=[1e6,1e6,1e6,0,0,0])
        add_elastic_link(1, 2, link_type=3, kx=1e6)  # tension-only
    

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kxNo
gapNo
frictionNo
dis_ratioNo
link_typeNo
beta_angleNo
group_nameNo
end_node_idYes
start_node_idYes
stiffness_valuesNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.3.1

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Since annotations are all false and provide no hints, the description carries the behavioral disclosure burden. It compensates well by detailing per-link-type constraints such as stiffness_values being only for type=1 and kx only for type=3/4, and gives concrete examples. It does not mention what happens if referenced nodes do not exist or whether an existing link is replaced, but the core behavioral constraints are covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is bilingual and lengthy, but well-structured with an Args list and Example section. Every sentence carries semantic value, and the conditional parameter notes are front-loaded within the parameter list. It could be slightly tighter in wording, but nothing is filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with ten parameters, no output schema, and no enums, the description covers all parameter semantics and gives two realistic examples, making it highly usable for an agent. It omits any description of the return value or side-effect behavior such as whether the operation overwrites existing links, but the input-side information is sufficiently complete for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage, so the description fully compensates by documenting all ten parameters, including types, allowable values for link_type, the six-component stiffness array, units for beta_angle, and conditional 'ONLY for' usage. This is more than the schema provides and is essential for correct invocation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool adds an elastic link between two nodes and models connections like bearings, which is a specific verb and resource. It distinguishes from support-style tools by the 'between two nodes' phrasing, but it does not explicitly contrast with similar link tools such as add_master_slave_link.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool by explaining that elastic links model connections like bearings between members, and the examples show typical calls. However, it does not explicitly state when to choose this tool over alternatives or when not to use it, so the guidance is implied rather than direct.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/SorataYang/qiao-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server