chargetrip/mcp
If you are the rightful owner of mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Chargetrip MCP server is designed to integrate the Chargetrip GraphQL API into AI agents, facilitating seamless communication and data exchange.
Intro
Chargetrip MCP server is an MCP server to integrate Chargetrip GraphQL API into you AI agent.
https://github.com/user-attachments/assets/822370b0-a039-4c61-bb03-f4eb41dfe79f
Getting started
Github Copilot
You can use this directly in the GitHub Copilot by adding an mcp.json
file in the .vscode
directory of the root directory:
{
"servers": {
"chargetrip-mcp": {
"type": "stdio",
"command": "npx",
"args": ["@chargetrip/mcp"],
"env": {
"CLIENT_ID": "*** YOUR CLIENT ID HERE ***",
"APP_ID": "*** YOUR APP ID HERE ***"
}
}
},
"inputs": []
}
Claude Code
You can use this directly in the Claude Code, by running:
claude mcp add chargetrip --env CLIENT_ID=YOUR_CLIENT_ID --env APP_ID=YOUR_APP_ID -- npx -y @chargetrip/mcp
Other AI agents
The package can be found in npmjs.com at https://www.npmjs.com/package/@chargetrip/mcp.
You will need to add two environment variables:
- CLIENT_ID with the client id from your workspace (usually sent under
x-client-id
header) - APP_ID with the application id from your workspace (usually sent under
x-app-id
header)