mcp

A connection configuration for DevGlobe’s hosted MCP server, which lets AI clients discover developers and request introductions with consent.

In plain words
What is it for?
Use it to connect VS Code, Cursor, or Claude to DevGlobe for public discovery and authorized introductions.
Why use it?
It provides the server address and, when needed, a secure way to supply an access token for consent-controlled tools.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/sajeetharan/devglobe/mcp
Clone the repo
git clone --depth 1 https://github.com/sajeetharan/devglobe
Per session 18 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,733 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00018 $0.01733
Opus 5 $0.00009 $0.00866
Sonnet 5 $0.00004 $0.00347
Haiku 4.5 $0.00002 $0.00173

Measured 2d ago against content hash 8470272e69b0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

mcp scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

docs-site/agents/mcp.md · 166 lines

How it starts

The opening of the file, as written. The whole thing — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MCP server

DevGlobe exposes a stateless Streamable HTTP endpoint:

https://www.devglobe.dev/mcp

VS Code configuration

Install DevGlobe.dev Developer Discovery and run DevGlobe.dev: Copy MCP Configuration from the Command Palette, or add the configuration manually.

Public discovery requires no credentials:

{
  "servers": {
    "devglobe": {
      "type": "http",
      "url": "https://www.devglobe.dev/mcp"
    }
  }
}

Cursor and Claude configuration

For Cursor, add this to .cursor/mcp.json in a project or to the global MCP configuration:

{
  "mcpServers": {
    "devglobe": {
      "url": "https://www.devglobe.dev/mcp"
    }
  }
}

For Claude, open Customize > Connectors, choose Add custom connector, and paste https://www.devglobe.dev/mcp as the remote MCP server URL. The client setup page provides copyable setup for both clients.

For consent-gated introduction tools, keep the issued token in the client's secure environment support:

{
  "servers": {
    "devglobe": {
      "type": "http",
      "url": "https://www.devglobe.dev/mcp",
      "headers": {
        "Authorization": "Bearer ${env:DEVGLOBE_AGENT_TOKEN}"
      }
    }
  }
}

Tools

Tool Authentication Behavior
search_developers Anonymous Searches public profiles by expertise, name, location, language, and agent availability
get_developer_profile Anonymous Returns one public profile by GitHub login
find_similar_developers Anonymous Finds alternatives similar to a known public profile
match_developers_to_repository Anonymous Matches indexed public profiles to a public GitHub repository using contribution, language, topic, and ownership evidence
get_trending_developers Anonymous Lists recent score gainers and new impact-tracking entries
preview_contribution_mission Anonymous Previews one contribution-ready issue without reserving it
request_introduction Bearer token Creates a pending request for an opted-in developer
get_introduction_status Same bearer token Polls a request created by that agent

Read the full file on GitHub · 166 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 166 lines · 18 tokens per session scan A 8470272e69b0

Subscribe to this mod's changes

mcp is an agent published in the GitHub repository sajeetharan/devglobe (31 stars, last pushed 2d ago), licensed MIT. It adds 18 tokens to every session and 1,733 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories