VISO TRUST
Access and manage your VISO TRUST third-party risk program directly through your AI assistant.
VISO TRUST MCP Server
A Model Context Protocol (MCP) server for integrating VISO TRUST API capabilities with AI assistants.
Requirements
- Java 21+
- Gradle
- Docker (optional for containerized deployment)
- MCP Inspector (optional for testing)
Configuration
VISO TRUST API Configuration
The following properties can be configured for the VISO TRUST API:
visotrust.api.base-url
: The base URL for the VISO TRUST API (default: http://localhost:8080)visotrust.api.token
: Your API token from the VISO TRUST platform (required)visotrust.api.timeout
: API request timeout in milliseconds (default: 30000)visotrust.api.connect-timeout
: API connection timeout in milliseconds (default: 5000)
For information on how to generate an API token for the visotrust.api.token
environment variable, see the VISO TRUST support documentation.
Application Profiles
This application supports Spring Boot profiles to enable different configurations for different deployment scenarios.
Remote Profile
The remote
profile is specifically designed for remote MCP support using Server-Sent Events (SSE). This profile configures the application to work optimally in distributed environments where the MCP server needs to communicate with remote clients over HTTP/SSE connections.
Key differences in the remote profile:
- Configured for SSE-based communication instead of standard I/O
- Optimized server settings for remote client connections
- Enhanced logging for distributed debugging
How to activate the remote profile:
When running with Java directly:
java -jar viso-mcp-server-<version>.jar --spring.profiles.active=remote
When running with Gradle:
./gradlew bootRun --args="--spring.profiles.active=remote"
When using Docker:
docker run -i --rm \
-e VISOTRUST_API_TOKEN=<your-api-token> \
-e SPRING_PROFILES_ACTIVE=remote \
viso-mcp-server
When to use the remote profile:
- When deploying the MCP server to a remote server or cloud environment
- When clients will connect via HTTP/SSE rather than direct stdio
- When you need enhanced logging and monitoring for distributed deployments
- When integrating with web-based AI assistants that require SSE communication
For local development and direct stdio communication, use the default profile (no profile specification needed).
Installation
Quick Install
Click one of the buttons below to install the VISO MCP Server in VS Code:
Manual Setup with VS Code
Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "viso_baseurl",
"description": "VISO TRUST API Base URL",
"default": "https://app.visotrust.com"
},
{
"type": "promptString",
"id": "viso_token",
"description": "VISO TRUST API Token",
"password": true
}
],
"servers": {
"viso-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"VISOTRUST_API_TOKEN",
"-e",
"VISOTRUST_API_BASEURL",
"visotrustai/viso-mcp-server:latest"
],
"env": {
"VISOTRUST_API_BASEURL": "${input:viso_baseurl}",
"VISOTRUST_API_TOKEN": "${input:viso_token}"
}
}
}
}
}
Optionally, you can add a similar example (i.e. without the mcp key) to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
{
"inputs": [
{
"type": "promptString",
"id": "viso_baseurl",
"description": "VISO TRUST API Base URL",
"default": "https://app.visotrust.com"
},
{
"type": "promptString",
"id": "viso_token",
"description": "VISO TRUST API Token",
"password": true
}
],
"servers": {
"viso-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"VISOTRUST_API_TOKEN",
"-e",
"VISOTRUST_API_BASEURL",
"visotrustai/viso-mcp-server:latest"
],
"env": {
"VISOTRUST_API_BASEURL": "${input:viso_baseurl}",
"VISOTRUST_API_TOKEN": "${input:viso_token}"
}
}
}
}
Usage with Claude Desktop and other MCP Clients
Docker Configuration
{
"mcpServers": {
"viso-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e", "VISOTRUST_API_TOKEN",
"-e", "VISOTRUST_API_BASEURL",
"visotrustai/viso-mcp-server:latest"
],
"env": {
"VISOTRUST_API_TOKEN": "<your-api-token>",
"VISOTRUST_API_BASEURL": "https://app.visotrust.com"
}
}
}
}
Java Configuration
{
"mcpServers": {
"viso-mcp": {
"command": "java",
"args": [
"-jar",
"viso-mcp-server-<version>.jar",
"--port",
"8080",
"--host",
"localhost"
],
"env": {
"JAVA_TOOL_OPTIONS": "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=*:5005",
"VISOTRUST_API_TOKEN": "<your-api-token>",
"VISOTRUST_API_BASEURL": "https://app.visotrust.com"
}
}
}
}
Note: The JAVA_TOOL_OPTIONS environment variable is used to set the JVM options for remote debugging. The address and port can be changed as needed.
💻 Development
Docker Setup
Build Docker Image
docker build -t viso-mcp-server .
Run Docker Container
docker run -i --rm -e VISOTRUST_API_TOKEN=<your-api-token> viso-mcp-server
Debugging
Install MCP Inspector
npm -g install @modelcontextprotocol/inspector
Run MCP Inspector for Testing
- Build MCP Server Jar File
./gradlew bootJar
- Run MCP Inspector
npx @modelcontextprotocol/inspector \
-e JAVA_TOOL_OPTIONS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=\*:5005 \
-e VISOTRUST_API_TOKEN=<your-api-token> \
java -jar build/libs/viso-mcp-server-<version>.jar \
--port 8080 --host localhost
Replace <version>
with the current version of the project (e.g., 1.0.0
or the version from the latest release).
CI/CD Pipeline
This project uses GitHub Actions for continuous integration and deployment. The workflow includes the following jobs:
Lint
Checks code formatting using Spotless:
./gradlew spotlessCheck
Build
Builds the application and creates a JAR file:
./gradlew build
Publish
When a new release is created:
- Updates the project version in build.gradle to match the release tag
- Uploads the JAR file to the GitHub release with the version from the release tag
- Builds and pushes the Docker image to Docker Hub with tags:
latest
- The release tag (e.g.,
v1.0.0
)
Required Secrets for Publishing
To enable Docker Hub publishing, add these secrets to your GitHub repository:
DOCKERHUB_USERNAME
: Your Docker Hub usernameDOCKERHUB_TOKEN
: Your Docker Hub access token
🛠️ Tools
This section provides documentation for the tools exposed by the VISO MCP Server. Each tool has a specific purpose, input parameters, and output format.
Assessments
get_assessment
- Get an assessment by its ID
- id: Assessment ID (number, required)
Returns detailed information about a specific assessment.
create_assessment
- Start an Assessment
- relationshipId: The ID of the relationship for which to create an assessment (number, required)
- recipientEmail: The email of the recipient (string, required)
- recipientFirstName: The first name of the recipient (string, required)
- recipientLastName: The last name of the recipient (string, required)
- publicDocumentUrls: URLs of public documents (string[], optional)
- followupType: The type of followup (string, required)
- followupRiskThreshold: The risk threshold for followup (string, optional)
- aiProcessingOnly: Whether to use AI processing only (boolean, optional)
- files: Files to include with the assessment (byte[][], optional)
Returns the created assessment details.
get_assessment_summary
- Get the summary for an assessment by its ID
- id: Assessment ID (number, required)
Returns the summary details for a specific assessment.
Audit Logs
get_user_audit_log_events
- Get the audit log events for your organization
- request: Audit log request parameters (object, required)
- startDate: Start date for the audit log events (string, required)
- endDate: End date for the audit log events (string, required)
- auditLogType: Type of audit log events to retrieve (string, optional)
Returns a list of user audit log events, limited to 500 records.
Business Cases
get_all_business_cases
- Get all available business cases for your organization
No parameters required.
Returns a list of all business cases available for your organization.
Data Types
get_all_datatypes
- Get all available data types for your organization
No parameters required.
Returns a list of all data types available for your organization.
IQR (Intelligent Query Response)
ask_trust_center
- Ask questions about your AI Trust Center
- request: Trust center query parameters (object, required)
- query: The question to ask (string, required)
Returns AI-generated responses to questions about your AI Trust Center.
ask_relationship
- Ask questions about a specific relationship
- request: Relationship query parameters (object, required)
- relationshipId: The ID of the relationship to query (number, required)
- query: The question to ask (string, required)
Returns AI-generated responses to questions about a specific relationship.
Relationships
get_all_relationships
- Get a list of all relationships and their assessment details
No parameters required.
Returns information about third-party vendors including their assessment status, risk levels, and contact details.
get_relationship_by_id
- Get a specific relationship and its assessment details by ID
- id: Relationship ID (number, required)
Returns detailed information about a third-party vendor including assessment status, risk levels, and contact details.
create_relationship
- Create a new relationship with a third-party vendor
- request: Relationship creation parameters (object, required)
- vendorName: Name of the vendor (string, required)
- businessOwnerEmail: Email of the business owner (string, required)
- homepage: Vendor's homepage URL (string, optional)
- businessContextIds: IDs of business contexts (number[], optional)
- dataTypeIds: IDs of data types (number[], optional)
- tags: Tags to apply to the relationship (string[], optional)
Returns the created relationship details.
update_relationship
- Update an existing relationship with a third-party vendor
- request: Relationship update parameters (object, required)
- id: Relationship ID (number, required)
- vendorName: Name of the vendor (string, optional)
- homepage: Vendor's homepage URL (string, optional)
- businessContextIds: IDs of business contexts (number[], optional)
- dataTypeIds: IDs of data types (number[], optional)
- businessOwnerEmail: Email of the business owner (string, optional)
- tags: Tags to apply to the relationship (string[], optional)
Returns the updated relationship details.
partially_update_relationship
- Partially update an existing relationship
- request: Partial relationship update parameters (object, required)
- id: Relationship ID (number, required)
- [Any fields from update_relationship that need to be changed]
Returns the updated relationship details with only the specified fields changed.
search_relationships
- Search for relationships by domain name or vendor name
- request: Search parameters (object, required)
- query: Search query (string, required)
Returns a list of matching relationships with their assessment details.
create_tags
- Create new tags for categorizing relationships
- request: Tag creation parameters (object, required)
- tags: List of tags to create (string[], required)
Returns a list of all tags including the newly created ones.
update_third_party_contact
- Update the contact details for a third-party vendor
- request: Contact update parameters (object, required)
- relationshipId: Relationship ID (number, required)
- email: Contact email (string, required)
- firstName: Contact first name (string, required)
- lastName: Contact last name (string, required)
Returns the updated relationship details.
get_suggested_contacts
- Get suggested contacts for a relationship
- relationshipId: Relationship ID (number, required)
Returns a list of potential contacts at the vendor organization.
get_relationship_assessment_history
- Get the assessment history for a relationship
- id: Relationship ID (number, required)
Returns a list of assessments associated with the specified relationship.
create_relationship_by_domain
- Create a new relationship using only the vendor domain
- request: Relationship creation parameters (object, required)
- domain: Domain of the vendor (string, required, e.g., visotrust.com)
- vendorName: Name of the vendor (string, required)
- product: Product offered by the vendor (string, optional)
- description: Description of the vendor relationship (string, optional)
Returns the created relationship details.
Webhooks
get_all_webhooks
- Get all webhooks
No parameters required.
Returns a list of all webhook configurations.
get_webhook
- Get a webhook configuration by id
- id: Webhook ID (number, required)
Returns details of a specific webhook configuration.
create_webhook_configuration
- Create a webhook configuration
- request: Webhook creation parameters (object, required)
- url: Webhook URL (string, required)
- secret: Webhook secret (string, required)
- eventTypes: Types of events to trigger the webhook (string[], required)
- serviceType: Type of service for the webhook (string, required)
Returns the created webhook configuration.
update_webhook_configuration
- Update a webhook configuration
- request: Webhook update parameters (object, required)
- id: Webhook ID (number, required)
- url: Webhook URL (string, optional)
- secret: Webhook secret (string, optional)
- eventTypes: Types of events to trigger the webhook (string[], optional)
- serviceType: Type of service for the webhook (string, optional)
Returns the updated webhook configuration.
delete_webhook_configuration
- Delete a webhook configuration
- id: Webhook ID (number, required)
Deletes the specified webhook configuration.
Intelligence Reports
create_bitsight_intelligence_report
- Create a new BitSight intelligence report
- request: BitSight report parameters (object, required)
- vendorDomain: The vendor's primary domain name (string, required)
- reportDate: The date/time the report was generated (ISO 8601 string, required)
- link: Optional link to the provider's UI (string, optional)
- guid: BitSight GUID for the entity (string, required)
- customId: Custom identifier from BitSight (string, optional)
- name: Display name of the BitSight entity (string, optional)
- description: Description of the BitSight entity (string, optional)
- primaryDomain: Primary domain for the BitSight entity (string, optional)
- ratingRange: BitSight rating range (string, optional)
- ratingColor: BitSight rating color (string, optional)
- confidence: Confidence level of the BitSight rating (string, optional)
Returns the created intelligence report.
create_security_scorecard_intelligence_report
- Create a new SecurityScorecard intelligence report
- request: SecurityScorecard report parameters (object, required)
- vendorDomain: The vendor's primary domain name (string, required)
- reportDate: The date/time the report was generated (ISO 8601 string, required)
- link: Optional link to the provider's UI (string, optional)
- grade: SecurityScorecard letter grade (string, required)
- domain: Domain associated with the scorecard entity (string, optional)
- score: Numeric score from SecurityScorecard (number, optional)
Returns the created intelligence report.
get_intelligence_reports_by_vendor
- Get all intelligence reports for a vendor
- vendorDomain: The vendor's primary domain name (string, required)
Returns a list of intelligence reports for the specified vendor.
get_latest_intelligence_report
- Get the latest intelligence report for a vendor from a specific source
- vendorDomain: The vendor's primary domain name (string, required)
- source: Intelligence provider (string enum: BITSIGHT or SECURITY_SCORECARD, required)
Returns the latest intelligence report for the specified vendor and source.
Users
get_all_users
- Get all users in your organization
- page: Results page to retrieve (number, optional; default 0)
- size: Number of records per page (number, optional; default 20)
- sort: Sorting criteria in the format: property(,asc|desc) (string, optional)
Returns a paginated list of users.
get_user_by_email
- Get a user by email
- email: User's email address (string, required)
Returns the user details.
create_user
- Create a new user
- request: User creation parameters (object, required)
- email: Email address of the new user (string, required)
- firstName: First name of the new user (string, required)
- lastName: Last name of the new user (string, required)
Returns the created user.
Code Formatting
This project uses Spotless with Google Java Format for code formatting. A pre-commit hook is automatically set up to ensure consistent code style.
Setup
After cloning the repository, the pre-commit hook will be automatically set up when you run any Gradle command.
Manual Formatting
To manually format all files:
./gradlew spotlessApply
To check if files are formatted correctly:
./gradlew spotlessCheck
If the pre-commit hook rejects your commit due to formatting issues, simply run ./gradlew spotlessApply
to fix the formatting and then try committing again.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Related Servers
Asana
Interact with Asana tasks, projects, workspaces, and comments using the Asana API.
MCP Workflow Orchestration Server
Enables AI agents to discover, create, and execute complex, multi-step workflows defined in simple YAML files.
Things
Interact with your task management data in the Things app.
Xiaohongshu Toolkit
An automation toolkit for Xiaohongshu, enabling content creation, publishing, and creator data analysis.
Google Calendar
Interact with Google Calendar APIs to manage events and calendars.
LearnMCP Server
An MCP server that enhances the Forest application with learning content extraction and summarization capabilities.
Taiga MCP Bridge
Interact with the Taiga project management platform through an MCP bridge, allowing AI tools to manage project resources.
Rework
Integrate AI applications with the Rework platform to manage projects, tasks, workflows, and jobs.
YNAB
Access and manage your YNAB (You Need A Budget) data through MCP-enabled clients.
Trello
Trello integration for working with boards, lists in boards and cards in lists.