MCP Server
io.github.mishrasanjeev/grantex MCP Server
io.github.mishrasanjeev/grantex
What is the io.github.mishrasanjeev/grantex MCP server?
OAuth 2.0 for AI agents — scoped delegation tokens, audit trails, and revocation.
How to install io.github.mishrasanjeev/grantex
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
GRANTEX_API_KEYrequiredsecretYour Grantex API key
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"grantex": {
"command": "npx",
"args": [
"-y",
"@grantex/mcp"
],
"env": {
"GRANTEX_API_KEY": "<YOUR_GRANTEX_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"grantex": {
"command": "npx",
"args": [
"-y",
"@grantex/mcp"
],
"env": {
"GRANTEX_API_KEY": "<YOUR_GRANTEX_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"grantex": {
"command": "npx",
"args": [
"-y",
"@grantex/mcp"
],
"env": {
"GRANTEX_API_KEY": "<YOUR_GRANTEX_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"grantex": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@grantex/mcp"
],
"env": {
"GRANTEX_API_KEY": "<YOUR_GRANTEX_API_KEY>"
}
}
}
}Claude Code
claude mcp add grantex --env GRANTEX_API_KEY=<YOUR_GRANTEX_API_KEY> -- npx -y @grantex/mcpRelated MCP servers
AgenticOrg MCP server for AI agents, A2A discovery, SOP deploy, and MCP tool listing.
View repository →