We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/lanbaoshen/mcp-jenkins'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
node.py•969 B
from fastmcp import Context
from mcp_jenkins.core.lifespan import jenkins
from mcp_jenkins.server import mcp
@mcp.tool(tags=['read'])
async def get_all_nodes(ctx: Context) -> list[dict]:
"""Get all nodes from Jenkins
Returns:
A list of all nodes
"""
return [node.model_dump(exclude={'executors'}) for node in jenkins(ctx).get_nodes(depth=0)]
@mcp.tool(tags=['read'])
async def get_node(ctx: Context, name: str) -> dict:
"""Get a specific node from Jenkins
Contains executor about the node.
Args:
name: The name of the node
Returns:
The node
"""
return jenkins(ctx).get_node(name=name, depth=2).model_dump(exclude_none=True)
@mcp.tool(tags=['read'])
async def get_node_config(ctx: Context, name: str) -> str:
"""Get node config from Jenkins
Args:
name: The name of the node
Returns:
The config of the node
"""
return jenkins(ctx).get_node_config(name=name)