Concepts

Glossary

Key terms and concepts used throughout the Agenetix platform.

5 sections

Core concepts#

TermDefinition
MCP serverAn MCP deployment registered in Agenetix. Can be a generated server (from OpenAPI) or a connected server (your existing MCP).
ToolA single operation exposed by an MCP server. For generated servers, tools have editable rules. For connected servers, tools are observed from the live server.
AgentAn AI chat agent that combines one or more MCP servers with a system prompt and LLM configuration. Agents power the embeddable chat experience.
GatewayAn optional auth and logging layer you can place in front of any MCP server. Provides OAuth, rate limiting, and request logging.

Tool concepts#

TermMeaning
Managed toolA tool on a generated server whose rules you can edit — description, instructions, when to use, when not to use, and examples.
Observed toolA tool on a connected server that Agenetix discovered via tools/list. Read-only by default; the upstream server owns the contract.
Tool rulesThe structured fields you edit on managed tools to guide how the LLM understands and selects the tool.
Description overrideA custom description you write that replaces the one from the OpenAPI spec.
InstructionsGeneral guidance for the LLM when invoking a tool (e.g. "always confirm with the user first").
When to use / When not to useSelection hints that help the LLM decide whether to pick a particular tool for a given request.

Server types#

TypeCreated viaTools areUse case
GeneratedGenerate from OpenAPIManaged (editable)You have a REST API with an OpenAPI spec
ConnectedConnect existing MCPObserved (read-only)You already run an MCP server

Agent concepts#

TermMeaning
Tool subsetYou can limit which tools from a server are available to a specific agent, rather than enabling all of them.
Client toolsApp-specific tools your frontend sends at chat time via the SDK. These run in your app, not on the server.
App contextExtra information your app provides to the agent at runtime (e.g. the current user, the page they are on).

Update concepts#

TermMeaning
OpenAPI refreshRe-importing your OpenAPI spec to pick up API changes. Agenetix merges the new spec non-destructively.
RediscoveryRe-running tool discovery on a connected server to detect changes in its live tool catalog.
Merge reportA summary of what changed during a refresh or rediscovery: new tools, updated tools, unchanged tools, and removed tools.