Productivity
usemycontext.ai
Helps users manage their personal context, profiles, and files.
ENDPOINT 1
https://mcp.usemycontext.ai/mcp
MCP server metadata
- Name
- UseMyContext.ai
- Version
- 0.5.0
UseMyContext.ai serves the connected user's own personal context: a compiled profile, their uploaded files, and contexts other people shared with them. Call `profile` first to ground who the user is. Call `list_profiles` when the user asks what profiles they have: it lists their own profiles (projects) with each one's name, @handle, and privacy status, and marks which one this connection reads by default (metadata only, no file content). Use `list_files` or `search_files` to find a file by name, `get_file` to read one file's full text, `ask_docs` to retrieve cited passages that answer a question from the user's documents, and `query_table` for exact counts, sums, filters, or group-bys over one tabular file. For clients that require the deep-research search/fetch contract, `search` and `fetch` are read-only aliases of `search_files` and `get_file` returning the same data in that shape. Use `shared_context` to list and read contexts shared with the user. When you learn something durable about the user, propose it with `suggest_update` (on an account-wide connection, pass an explicit projectId from `list_profiles`); it is saved as a pending suggestion the user reviews, and nothing here can modify the user's files. If `profile` returns an empty-profile note, the account is brand new: follow that note, offer a short interview, and file what you learn with `suggest_update`. This connection is READ-ONLY: it cannot create, rename, or delete a profile, change a profile's privacy, manage the plan or billing, set up a team, invite teammates, or connect Google Drive, Notion, or kDrive - the user does those at usemycontext.ai. Call `info` for what UseMyContext is, what you can do here, and where to manage the account; call `account` for the user's current plan and storage usage.
Known tools 13
profileReturn the user's compiled personal context - a compact structured summary of who they are, synthesized from their accepted facts.
Inferred read-onlylist_profilesList the user's own profiles (their projects) so you can tell them what profiles they have.
Inferred read-onlyinfoExplain what UseMyContext is, what this connection can and cannot do, and where the user goes to manage their account.
Inferred read-onlyaccountReport the user's current plan and usage: their tier (Free or Premium), how many projects and how much storage they are using against their limits, their subscription status if any, and where they manage their plan.
Inferred read-onlylist_filesList the user's files (metadata only: id, name, size, content-type, modified).
Inferred read-onlysearchSearch the user's files by filename and return matching documents in the deep-research result shape.
Inferred read-onlyget_fileGet the full text content of one file by id (large files are truncated; use ask_docs for targeted passages).
Inferred read-onlyfetchFetch one document's full extracted text by id (a file id from search / search_files / list_files), in the deep-research result shape.
Inferred read-onlyask_docsSearch the user's connected documents by MEANING and return the most relevant passages (the actual text), each cited with its source file, for you to read and quote.
Inferred read-onlyquery_tableRun an EXACT, deterministic query over ONE tabular file (a CSV, or the first table of a spreadsheet/PDF/Word document).
Inferred read-onlysuggest_updateSuggest an update to the user's saved context (something you learned about them).
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.usemycontext-ai]
url = "https://mcp.usemycontext.ai/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"usemycontext-ai": {
"type": "http",
"url": "https://mcp.usemycontext.ai/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: usemycontext-ai
Remote MCP URL: https://mcp.usemycontext.ai/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"usemycontext-ai": {
"url": "https://mcp.usemycontext.ai/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"usemycontext-ai": {
"type": "http",
"url": "https://mcp.usemycontext.ai/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "usemycontext-ai",
"transport": "streamable-http",
"url": "https://mcp.usemycontext.ai/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.