Connect Asset Manager Pro to your AI assistant Bring the entire Asset Manager Pro API documentation into the tools you already work in. Connect it as an MCP server and let Claude, Gemini, or Copilot draft, explain, and refine your API calls. Turning ideas into working requests in seconds.
Server URL
https://mcp.patronas.com/mcp
Copy
Install in four ways
Pick the client you use. Each takes under a minute.
Claude Code
Claude Desktop
Gemini CLI
VS Code
Claude Code
Add the remote server with a single command from your terminal.
1
Register the server
claude mcp add --transport http asset-manager-pro https://mcp.patronas.com/mcp
⧉
Claude Desktop
Add a custom connector in Settings, or edit the config file directly.
1
Open connector settings
Go to Settings → Connectors → Add custom connector . Give it a name and paste the server URL.
2
Or edit claude_desktop_config.json
Prefer a file? Add this block, then fully restart Claude Desktop.
{
"mcpServers": {
"asset-manager-pro": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.patronas.com/mcp"
]
}
}
}
⧉
3
Verify
Look for the connector icon in the composer. Asset Manager Pro's tools appear right away — no sign-in required.
Gemini CLI
Add the server via command, or in your settings.json.
1
Add with one command
gemini mcp add --transport http asset-manager-pro https://mcp.patronas.com/mcp
⧉
2
Or edit ~/.gemini/settings.json
{
"mcpServers": {
"asset-manager-pro": {
"httpUrl": "https://mcp.patronas.com/mcp"
}
}
}
⧉
3
Check inside Gemini
Run /mcp in a Gemini CLI session to list connected servers and their tools.
VS Code
Use MCP from Copilot Chat's Agent mode — via a workspace file or the CLI.
1
Create .vscode/mcp.json
Add this file to your workspace (or run MCP: Add Server from the Command Palette).
{
"servers": {
"asset-manager-pro": {
"type": "http",
"url": "https://mcp.patronas.com/mcp"
}
}
}
⧉
2
Or add it from the terminal
code --add-mcp '{"name":"asset-manager-pro","type":"http","url":"https://mcp.patronas.com/mcp"}'
⧉
3
Start it in Agent mode
Open Copilot Chat → Agent , click Start above the server in mcp.json, then hit the tools icon to confirm Asset Manager Pro is listed.
Examples
Ask your assistant about the API:
"How to update the volume of a Swap in Asset Manager Pro?"
"Give me an API call to fetch the latest transactions in Asset Manager Pro."
Exposed MCP Tools
The server exposes 10 specialized tools to discover, validate, and document the REST and GraphQL APIs.
Tool Name
Description
search-api
Searches API capabilities across REST/OpenAPI endpoints, GraphQL root query operations, and GraphQL types.
search-graphql-fields
Searches GraphQL fields across object and interface types by field name, parent type, return type, and description.
list-openapi-endpoints
Lists all available REST/OpenAPI paths, HTTP methods, and summaries.
get-endpoint-doc
Returns detailed OpenAPI documentation for a specific REST endpoint path and HTTP method.
get-rest-model
Resolves and returns the detailed OpenAPI schema for a specific shared REST data model component.
list-graphql-operations
Lists all available GraphQL root query operations with descriptions and return types.
get-graphql-doc
Returns SDL documentation for a specific GraphQL root query operation.
get-type-doc
Returns SDL documentation for a specific GraphQL type.
generate-graphql-query
Generates a syntactically correct starter GraphQL query for a known root operation.
validate-graphql-query
Validates a custom or generated GraphQL query against the loaded schema without executing it.