ChartHop Search MCP
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., "@ChartHop Search MCPsearch for Jeremy Beker's contact info"
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.
ChartHop Search MCP
A small MCP server that searches the 1Password/AgileBits
employee directory (ChartHop). It mirrors the ChartHop piece of the Internal1P Alfred workflow:
under the hood it calls GET {host}/alfred/charthop?q={query} with a bearer token and returns the
matching people.
Tool
search_people(query)
Search the directory by name (or partial name). Returns a list of people, each with:
Field | Meaning |
| Full name |
| Role / title |
| Link to the person's ChartHop profile |
Returns an empty list when there are no matches.
Related MCP server: contacts-mcp
Configuration
Configuration is read from environment variables:
Variable | Required | Default | Notes |
| yes | — | Your Internal1P bearer token (JWT). |
| no |
| Override for staging ( |
Supply your own token. Do not reuse a token belonging to another person — it is tied to their account.
Setup
uv syncRegister with an MCP client
Add this to your client's MCP config (e.g. Claude Desktop claude_desktop_config.json, or via
claude mcp add for Claude Code):
{
"mcpServers": {
"charthop": {
"command": "uv",
"args": [
"--directory", "/Users/jeremybeker/development/charthup_mcp",
"run", "charthop-mcp"
],
"env": {
"CHARTHOP_TOKEN": "<your-jwt>"
}
}
}
}Verify
Smoke-test the tool logic directly (no MCP client needed):
CHARTHOP_TOKEN=<your-jwt> uv run python -c \
"from charthop_mcp.server import search_people; import json; print(json.dumps(search_people('jeremy'), indent=2))"Or inspect it interactively with the MCP Inspector:
uv run mcp dev src/charthop_mcp/server.pyMaintenance
Tools
Related MCP Servers
- Alicense-qualityBmaintenanceMCP server for searching and retrieving content from Igloo digital workplace instances. Enables AI assistants to search, fetch pages as Markdown, and look up member profiles via the Igloo API.4MIT
- Alicense-qualityDmaintenanceLocal MCP server that exposes Apple Contacts data, enabling phone, email, and name lookups via a helper app.8MIT
- Flicense-qualityCmaintenanceAn MCP server exposing employee info retrieval and web search tools, designed to be consumed by a LangChain agent for decoupled tool execution.
- Flicense-qualityCmaintenanceA sample employee database exposed as an MCP server, enabling AI agents to search employees and query organizational structure.
Related MCP Connectors
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
MCP connector for iMessage & Contacts via a local Mac agent + Vercel relay
A basic MCP server to operate on the Postman API.
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/jbeker/charthop_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server