Trade Surveillance Support MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Trade Surveillance Support MCP ServerI got an email about a settlement discrepancy for trade ID 789012 - can you help investigate?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trade Surveillance Support MCP Server
An MCP (Model Context Protocol) server designed to automate trade surveillance support workflows by integrating with your existing SQL configs and Java code repositories.
Overview
This MCP server enables you to:
Parse user inquiry emails - Extract key information from support emails automatically
Search SQL config files - Find relevant database queries and configurations
Search Java code - Locate report generation classes and methods
Execute Java reports - Run Java processes to generate data and reports
Generate response summaries - Create comprehensive responses for user inquiries
Related MCP server: JoyCode MCP Server - FOP Workflow Assistant
Installation
Prerequisites
Python 3.10 or higher
uvpackage manager (recommended) orpip
Install with uv (recommended)
# Install uv if you haven't already
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install the MCP server
uv pip install -e .Install with pip
pip install -e .Configuration
Setting up with VS Code
Open VS Code Settings
Search for "MCP"
Add a new MCP server configuration:
{
"mcp.servers": {
"trade-surveillance": {
"type": "stdio",
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp_test_2",
"run",
"trade-surveillance-mcp"
]
}
}
}Setting up with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"trade-surveillance": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/mcp_test_2",
"run",
"trade-surveillance-mcp"
]
}
}
}macOS/Linux: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
π― Keyword-Based Search (No File Paths!)
Instead of searching by file paths, this MCP server uses metadata annotations so Copilot can find files by what they do:
Example SQL annotation:
-- @keywords: trade, settlement, daily, reconciliation
-- @type: compliance_report
-- @description: Daily trade settlement reconciliation reportExample Java annotation:
/**
* @keywords settlement, report, generator
* @type report_generator
* @description Generates daily settlement reports
*/Result: Copilot searches by keywords like "settlement report" instead of file paths!
π Documentation:
QUICKSTART.md - Get started in 5 minutes
METADATA_GUIDE.md - Complete annotation guide
examples/- Annotated SQL and Java examples
Usage
With GitHub Copilot in VS Code
Open a chat with Copilot
Paste a user inquiry email
Copilot will automatically use the MCP tools to:
Parse the email
Search for relevant configs by keywords (not file paths!)
Search for Java code by keywords
Execute reports
Generate a response
Example prompt:
I received this email from a user:
[Paste email content here]
Can you help me investigate and generate the necessary reports?Available Tools
1. parse_email_inquiry
Extracts key information from user inquiry emails including inquiry type, trade IDs, time periods, and priority.
2. search_sql_configs β Metadata-based search
Searches through your SQL configuration files by keywords instead of file paths. Files are searched using metadata annotations (see METADATA_GUIDE.md).
3. search_java_code β Metadata-based search
Locates Java classes and methods by keywords instead of file paths. Classes are found using javadoc annotations (see METADATA_GUIDE.md).
4. execute_java_report
Runs Java processes with the appropriate config files to generate reports.
5. rebuild_metadata_index
Rebuilds the search index by scanning all annotated SQL configs and Java files. Run this after adding new files or updating annotations.
6. generate_response_summary
Creates a comprehensive summary response for the user.
Project Structure
mcp_test_2/
βββ trade_surveillance_mcp/
β βββ __init__.py
β βββ server.py # Main MCP server implementation
βββ pyproject.toml # Project dependencies
βββ README.md
βββ .github/
βββ copilot-instructions.mdDevelopment
Running Locally
# Run the server directly
uv run trade-surveillance-mcp
# Or with Python
python -m trade_surveillance_mcp.serverCustomization
You'll need to customize the server to work with your specific repository structure:
Update search paths - Modify
config_directoryandcode_directoryparametersImplement email parsing - Add your email parsing logic in
parse_email_inquiryAdd file search - Implement actual file searching in
search_sql_configsandsearch_java_codeConfigure Java execution - Add your Java classpath and execution logic in
execute_java_report
Connecting to Your Repository
Point the MCP server to your actual config and code repositories:
# Example: Update default directories
@mcp.tool()
async def search_sql_configs(
search_term: str,
config_directory: str = "/path/to/your/sql/configs"
):
# Your implementationNext Steps
β MCP server is ready! - Restart VS Code to load it
π Annotate your files - Add metadata keywords to your SQL configs and Java code (QUICKSTART.md)
π Build the index - Use
rebuild_metadata_indextool in CopilotβοΈ Customize paths - Update default directories in
server.pyto your reposπ― Test with Copilot - Paste a user email and let Copilot search by keywords!
Key Innovation: No More File Path Search! π
Your SQL configs and Java files are now searchable by keywords:
Copilot finds files by what they do, not where they are
Search "settlement report" instead of remembering
configs/reports/daily/settlement_v2.sqlSee examples in
examples/configs/andexamples/src/
Troubleshooting
Server not appearing in VS Code
Check the MCP server logs in VS Code Output panel
Verify the absolute path in configuration is correct
Ensure
uvis installed and in PATH
Python version issues
Ensure Python 3.10+ is installed:
python --versionUse
uvfor better environment management
Java execution errors
Verify Java is installed:
java -versionCheck classpath configuration
Ensure config files are accessible
Resources
License
MIT
Available Tools
6 toolsexecute_java_reportA
Execute a Java unit test to generate a trade surveillance report.
This tool runs the unit test for the specified Java class with the given
config file to generate the required report or data extract. Running tests
ensures the report generation is validated during execution.
Args:
java_class: The fully qualified Java class name (e.g., "com.trade.SettlementReportGenerator")
config_file: Path to the SQL config file to use
output_directory: Directory where the report should be saved
Returns:
A dictionary containing execution status, report path, and any errors
| Name | Required | Description | Default |
|---|---|---|---|
| java_class | Yes | ||
| config_file | Yes | ||
| output_directory | No | ./reports |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool as executing a unit test to generate a report, implying it performs a read/write operation (since it saves output) and validates execution. However, it lacks details on permissions, error handling, rate limits, or side effects. The description adds some context but is incomplete for a tool with mutation capabilities.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a clear purpose statement, explanatory paragraph, and separate Args and Returns sections. It is appropriately sized and front-loaded, with no redundant sentences. Minor improvements could include tighter phrasing, but overall it is efficient and organized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, no annotations, but has an output schema), the description is reasonably complete. It explains the purpose, parameters, and return value, and the output schema handles return details. However, for a tool that executes tests and generates reports, more behavioral context (e.g., execution environment, error modes) would enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 0%, so the description must compensate. It provides a dedicated 'Args' section explaining each parameter's purpose (e.g., 'fully qualified Java class name,' 'Path to the SQL config file,' 'Directory where the report should be saved'), adding meaningful semantics beyond the bare schema. However, it does not specify formats or constraints for the config_file path or output_directory beyond examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Execute a Java unit test to generate a trade surveillance report.' It specifies the verb ('execute'), resource ('Java unit test'), and outcome ('generate a trade surveillance report'), distinguishing it from sibling tools like search_java_code or search_sql_configs. The first sentence provides a complete and specific purpose statement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context by mentioning 'trade surveillance report' and 'validated during execution,' but it does not explicitly state when to use this tool versus alternatives like search_java_code or generate_response_summary. There is no guidance on prerequisites, exclusions, or comparisons to sibling tools, leaving the agent to infer appropriate usage scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
generate_response_summaryB
Generate a summary response for the user inquiry with all relevant information.
This tool combines all the gathered information into a clear, actionable
response that can be sent back to the user.
Args:
parsed_email: The parsed email inquiry data
config_files: List of config files that were used
report_path: Path to the generated report file
Returns:
A formatted summary string ready to send to the user
| Name | Required | Description | Default |
|---|---|---|---|
| parsed_email | Yes | ||
| config_files | Yes | ||
| report_path | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the tool's function but lacks critical behavioral details: it doesn't mention whether this is a read-only or mutating operation, what permissions might be required, error handling, or performance characteristics. The description is functional but insufficient for a tool with complex inputs and output.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured and appropriately sized: a purpose statement, elaboration, parameter details, and return valueβall in a compact format. It's front-loaded with the core function. Minor verbosity in the elaboration sentence could be tightened, but overall it earns its place efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters with nested objects, no annotations, but with an output schema), the description is moderately complete. It covers parameters and return value at a high level, and the output schema handles return details. However, it lacks behavioral context and usage guidelines, leaving gaps for safe and effective tool invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It provides a clear 'Args' section that names and briefly describes all three parameters ('parsed_email', 'config_files', 'report_path'), adding meaningful context beyond the bare schema. However, it doesn't detail expected formats or constraints (e.g., what 'parsed_email' structure entails).
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Generate a summary response for the user inquiry with all relevant information' and 'combines all the gathered information into a clear, actionable response'. It specifies the verb ('generate', 'combines') and resource ('summary response'), though it doesn't explicitly differentiate from sibling tools like 'execute_java_report' or 'parse_email_inquiry'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It mentions combining 'gathered information' but doesn't specify prerequisites, timing relative to other tools (e.g., after 'parse_email_inquiry'), or exclusions. This leaves the agent without context for tool selection among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
parse_email_inquiryA
Parse a user inquiry email to extract key information for investigation.
This tool analyzes email content and extracts:
- Inquiry type (trade issue, report request, data verification, etc.)
- Related trade IDs or account numbers
- Time period of interest
- Priority level
- Required actions
Args:
email_content: The full text content of the user's inquiry email
Returns:
A dictionary containing parsed information including inquiry_type,
trade_ids, time_period, priority, and suggested_actions
| Name | Required | Description | Default |
|---|---|---|---|
| email_content | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes what the tool does (analyzes email content to extract specific information) and outlines the return structure, though it lacks details on error handling, performance limits, or authentication needs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded, starting with a clear purpose statement followed by bullet points of extracted information and a concise specification of arguments and returns. Every sentence adds value without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (1 parameter, no annotations, but with an output schema), the description is largely complete: it explains the purpose, parameter semantics, and return values. The output schema reduces the need to detail return structure, though additional context like error cases or limitations could enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaning by specifying that 'email_content' is 'the full text content of the user's inquiry email', clarifying the parameter's purpose beyond the schema's basic type and title. However, it does not detail format constraints or examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('parse') and resource ('user inquiry email'), and distinguishes it from sibling tools by focusing on email analysis rather than report execution, summary generation, metadata rebuilding, or code/config searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context ('for investigation') but does not explicitly state when to use this tool versus alternatives. No exclusions or prerequisites are mentioned, leaving the agent to infer appropriate scenarios based on the purpose alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rebuild_metadata_indexA
Rebuild the metadata index by scanning all SQL configs and Java files.
Use this tool when you've added new files or updated metadata annotations.
The index is automatically built on first search, but you can manually rebuild
it with this tool.
Args:
config_directory: Path to the directory containing SQL config files
code_directory: Path to the directory containing Java source files
Returns:
A summary of the indexing operation
| Name | Required | Description | Default |
|---|---|---|---|
| config_directory | No | ./configs | |
| code_directory | No | ./src |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by explaining the tool's purpose, triggering conditions, and automatic vs manual behavior. It doesn't mention performance implications, error handling, or permissions, but provides solid operational context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Perfectly structured with purpose statement, usage guidelines, and parameter explanations in separate logical sections. Every sentence earns its place with no wasted words, and key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (rebuilding indexes across file systems), no annotations, and the presence of an output schema (handling return values), the description provides complete operational context including purpose, when to use, parameter meanings, and return value summary.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by clearly explaining both parameters (config_directory for SQL config files, code_directory for Java source files) and their purposes, adding essential meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('rebuild the metadata index') and resources involved ('scanning all SQL configs and Java files'), distinguishing it from sibling tools like search_java_code or search_sql_configs which only search rather than rebuild indexes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicit guidance is provided on when to use this tool ('when you've added new files or updated metadata annotations') and when not to use it ('automatically built on first search'), with clear context about manual vs automatic rebuilding.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_java_codeA
Search for Java classes using metadata keywords instead of file paths.
This tool searches through indexed Java files by their javadoc metadata annotations.
Java classes should include metadata in javadoc comments like:
/**
* @keywords trade, settlement, report_generator
* @type report_engine
* @description Generates daily settlement reports
*/
Args:
search_keywords: Keywords to search for (e.g., "report generator", "trade processor")
code_directory: Path to the directory containing Java source files (used for initial scan)
Returns:
A dictionary containing matching Java files with their metadata and methods
| Name | Required | Description | Default |
|---|---|---|---|
| search_keywords | Yes | ||
| code_directory | No | ./src |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses that the tool searches 'indexed Java files' and uses 'javadoc metadata annotations', adding context about the search mechanism. However, it lacks details on behavioral traits such as performance (e.g., speed, limitations), error handling, or prerequisites (e.g., need for pre-indexed files), leaving gaps in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: the first sentence states the core purpose, followed by explanatory details and a structured format with 'Args' and 'Returns' sections. Every sentence adds value, such as the javadoc example and parameter explanations, with no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no annotations, but with an output schema), the description is mostly complete. It covers purpose, usage context, parameter semantics, and return value overview. The output schema exists, so detailed return explanations are not needed, but it could improve by addressing behavioral aspects like indexing requirements or error cases.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It adds meaning by explaining 'search_keywords' with examples (e.g., 'report generator') and clarifies that 'code_directory' is 'used for initial scan', providing context beyond the schema's basic titles. However, it does not detail parameter constraints or formats (e.g., keyword syntax, directory validity), partially compensating for the low coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('search for Java classes') and the unique mechanism ('using metadata keywords instead of file paths'), distinguishing it from potential file-based search tools. It explicitly mentions the resource (Java classes) and the method (javadoc metadata annotations), making the purpose unambiguous and distinct from siblings like 'search_sql_configs'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use this tool: for searching Java classes via metadata keywords rather than file paths. It implies usage for indexed Java files with javadoc metadata, but does not explicitly state when not to use it or name alternatives among siblings like 'rebuild_metadata_index' for indexing tasks.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_sql_configsA
Search for SQL configuration files using metadata keywords instead of file paths.
This tool searches through indexed SQL config files by their metadata annotations.
Files should include metadata comments like:
-- @keywords: trade, transaction, daily_report
-- @type: compliance_check
-- @description: Daily trade reconciliation report
Args:
search_keywords: Keywords to search for (e.g., "trade settlement", "compliance", "daily report")
config_directory: Path to the directory containing SQL config files (used for initial scan)
Returns:
A dictionary containing matching config files with their metadata
| Name | Required | Description | Default |
|---|---|---|---|
| search_keywords | Yes | ||
| config_directory | No | ./configs |
Output Schema
| Name | Required | Description |
|---|---|---|
No output parameters | ||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden and does well by explaining the search mechanism (indexed files, metadata annotations), providing concrete examples of metadata format, and describing the return format. It doesn't mention performance characteristics, rate limits, or authentication needs, but covers the core behavior adequately.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured with a clear purpose statement, usage explanation, metadata examples, and separate Args/Returns sections. Every sentence adds value, and information is well-organized without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity, no annotations, but with output schema present, the description provides complete context: clear purpose, usage guidance, behavioral details, parameter explanations, and return format description. The output schema handles return structure, so the description focuses appropriately on operational context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
With 0% schema description coverage, the description fully compensates by explaining both parameters: 'search_keywords' gets examples and context about metadata matching, and 'config_directory' explains its purpose ('used for initial scan') with a default value. The description adds significant meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with specific verb ('search') and resource ('SQL configuration files'), and distinguishes it from path-based searches by emphasizing metadata keyword searching. It explicitly differentiates from potential sibling tools by focusing on SQL config files rather than Java code or other resources.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use this tool ('using metadata keywords instead of file paths') and includes examples of metadata annotations. However, it doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools, though the distinction from path-based searching is implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- Changed
execute_java_report1 field changed- added
Input schema / titleAdded value: +"execute_java_reportArguments"
- Changed
generate_response_summary1 field changed- added
Input schema / titleAdded value: +"generate_response_summaryArguments"
- Changed
parse_email_inquiry1 field changed- added
Input schema / titleAdded value: +"parse_email_inquiryArguments"
- Changed
rebuild_metadata_index1 field changed- added
Input schema / titleAdded value: +"rebuild_metadata_indexArguments"
- Changed
search_java_code1 field changed- added
Input schema / titleAdded value: +"search_java_codeArguments"
- Changed
search_sql_configs1 field changed- added
Input schema / titleAdded value: +"search_sql_configsArguments"
6 tool updates
- First observed
execute_java_report - First observed
generate_response_summary - First observed
parse_email_inquiry - First observed
rebuild_metadata_index - First observed
search_java_code - First observed
search_sql_configs
TDQS
Each tool has a clearly distinct purpose with no overlap. The tools cover different stages of a workflow: parse_email_inquiry for input analysis, search_sql_configs/search_java_code for resource discovery, execute_java_report for execution, generate_response_summary for output formatting, and rebuild_metadata_index for maintenance. An agent can easily distinguish between them based on their specific functions.
All tools follow a consistent verb_noun pattern with snake_case naming. The verbs are clear and descriptive (execute, generate, parse, rebuild, search), and the nouns precisely indicate the target resource or action. There are no deviations in naming conventions across the six tools.
Six tools is well-scoped for a trade surveillance support server. Each tool serves a distinct purpose in the workflow, from inquiry parsing to report generation and response formatting. The count is neither too thin nor bloated, providing comprehensive coverage without redundancy.
The toolset covers the core trade surveillance workflow effectively: parsing inquiries, searching for relevant configurations and code, executing reports, and generating responses. A minor gap exists in direct data manipulation or validation tools (e.g., validate_trade_data, update_config), but agents can work around this using the existing search and execution tools. The surface supports end-to-end processing without dead ends.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Source-linked SEC 13F research, quality checks, watchlists and audit trails for agents.
Investment research superagent: podcasts, SEC filings, and no-code research pipelines.
Email OS for agents - real-inbox search, triage, commitments, and a verifiable BEC hard-stop.
Raza Rizwan's record: ask how much of your workflow AI can automate; governed, cited answers.
Related MCP Servers
- AlicenseBqualityDmaintenanceLLM Driven Trading Platform Orchestration - Strategy Design, Research & Implementation50119PythonMIT
- FlicenseBqualityDmaintenanceEnables intelligent workflow automation for JD's FOP platform, supporting PRD analysis, code generation, and flowchart creation with smart retrieval optimization and standardized file naming rules.673-
- FlicenseNot gradedqualityBmaintenanceUnified email orchestration server for Gmail and Outlook with agentic tools for sending, reading, searching, and managing emails, enabling assistant-driven email workflows.2-
- FlicenseNot gradedqualityCmaintenanceNormalizes heterogeneous trade data (FIX, JSON, CSV) into a unified schema and exposes query tools via MCP for natural language access.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/vic3custodio/mcp_test_2'
If you have feedback or need assistance with the MCP directory API, please join our Discord server