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.
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.pyThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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