uml-search-mcp
Enables searching across UMass Lowell domain for people, website content, places, news, and parsing URLs into markdown.
README
UML Search MCP Server
An MCP server for searching across the UMass Lowell web domain.
Usage
The MCP server can be used locally by either
- Run as host process:
uv run server.py- Accessible at
localhost:8000/mcp
- Accessible at
- Run as a docker container:
./build_and_run.sh- Accessible at
0.0.0.0:8000/mcporlocalhost:8000/mcplocally
- Accessible at
[!NOTE] If you're using the MCP Inspector tool for local development, uml-search-mcp uses the Streamable HTTP transport, not STDIO or server-sent events (SSE).
☸ Kubernetes
For production deployments on kubernetes check the reference manifest, k8s/k8s_prod.yaml.
🧩 Technologies
- Docker
- MCP
🛠️ Tool Calls
<table>
<tr>
<th>Tool Name</th>
<th>Description</th>
<th>Function Signature</th>
<th>Response Schema</th>
<th>Misc.</th>
</tr>
<tr>
<td><code>search_uml_people</code></td>
<td>Search for people at UMass Lowell</td>
<td>
<pre><code>
... (query: str
top_k: int)
</code></pre>
</td>
<td>
<pre><code>
{
name: str
role: str
department: str
building: str
email: str
phone_number: str
}
</code></pre>
</td>
<td>Identified as PeopleSearchResultItem object</td>
</tr>
<tr>
<td><code>search_uml_website</code></td>
<td>Search the general UMass Lowell website</td>
<td>
<pre><code>
... (query: str
top_k: int)
</code></pre>
</td>
<td>
<pre><code>
{
title: str
detail: str
url: str
}
</code></pre>
</td>
<td>Identified as SearchResultItem object</td>
</tr>
<tr>
<td><code>search_uml_places</code></td>
<td>Search for places across UMass Lowell</td>
<td>
<pre><code>
... (query: str
top_k: int)
</code></pre>
</td>
<td>
<pre><code>
{
name: str
address: str
map_url: str
phone_number: Optional[str]
}
</code></pre>
</td>
<td>Identified as PlaceSearchResultItem object</td>
</tr>
<tr>
<td><code>search_uml_news</code></td>
<td>Search for UMass Lowell news</td>
<td>
<pre><code>
... (query: str
top_k: int)
</code></pre>
</td>
<td>
<pre><code>
{
title: str
detail: str
url: str
}
</code></pre>
</td>
<td>Identified as NewsSearchResultItem object</td>
</tr>
<tr>
<td><code>parse_uml_url</code></td>
<td>Parse and return the markdown content from a URL from the UMass Lowell domain</td>
<td>
<pre><code>
... (url: str)
</code></pre>
</td>
<td>
<pre><code>
str
</code></pre>
</td>
<td>Returns a raw string as the processed markdown content.</td>
</tr>
</table>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.