SeatGeek MCP Server
The SeatGeek MCP Server is a comprehensive tool for searching events, performers, and venues while providing personalized recommendations using SeatGeek's data.
Key capabilities:
🎟️ Event Search - Find events by performer, location, date, venue, or general text query
🎯 Personalized Recommendations - Get event and performer suggestions based on your preferences, location, or past interests
🏟️ Detailed Venue Information - Access seating sections, rows, and venue details for specific events
🌍 Location-Based Features - Use geoip, lat/lon, postal codes, or city/state/country for targeted results
📅 Date Filtering - Search within specific date ranges
📄 Flexible Output - Results available in structured (readable) or JSON (raw) format
Integration & Setup:
Operates as standalone server with STDIO and HTTP streaming transport support
Integrates with platforms like Claude Desktop and OpenWebUI (via
mcpoproxy)Requires SeatGeek API credentials configured through environment variables or
.envfile
Provides comprehensive tools for accessing SeatGeek's event data, including searching for events and performers, getting personalized recommendations, retrieving detailed venue seating information with sections and rows, and finding events by location or date.
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., "@SeatGeek MCP Serverfind concerts in New York this weekend"
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.
seatgeek-mcp
Comprehensive MCP server exposing a registry of SeatGeek tools including events, performers, venues, section info, and recommendations as a TypeScript library.
Demo
Related MCP server: Eventbrite MCP Server
Prerequisites
Node.js >= 18.0.0
npm >= 8.0.0
Installation
npm install seatgeek-mcpUsage
As a Standalone Server
# STDIO transport (default)
npm start
# HTTP streaming transport
MCP_HTTP=1 PORT=8080 npm startTools
find_events: Search for events by performer, location, date, or venue. This tool is optimized for finding specific events based on user queries. If the query involves a performer, it first looks up the performer, then finds events for that performer. Otherwise, it searches events directly. Returns structured event data with venue information.find_event_recommendations: Get personalized event recommendations based on performers, events, or location. This tool first searches for performers and/or events based on the query, then uses the IDs to find similar events. Use location parameters for nearby events.find_performer_recommendations: Get personalized performer recommendations based on performers, events, or location. This tool first searches for performers and/or events based on the queries, then uses the IDs to find similar performers.retrieve_event_venue_information: Get detailed seating information including sections and rows for a specific event. This tool first searches for the event using the provided query, then retrieves detailed venue layout information.
Environment Variables
SEATGEEK_CLIENT_ID: Your SeatGeek API client ID (required)SEATGEEK_SECRET: Your SeatGeek API secret (optional)MCP_HTTP: Set to any value to enable HTTP transport instead of STDIOPORT: Port to listen on when using HTTP transport (default: 8080)
Setting up Environment Variables
To use this MCP server, you need to set up a .env file in the root directory with your SeatGeek API credentials:
Copy the
.env.examplefile to.env:cp .env.example .envEdit the
.envfile and replace the placeholder values with your actual SeatGeek API credentials
You can obtain your SeatGeek API credentials by creating an account at SeatGeek Platform.
Development
Setup
npm installBuild
npm run buildDevelopment Server
npm run devClean Build
npm run cleanTesting the Server
You can test the server in several ways:
Using HTTP transport (easiest for testing):
MCP_HTTP=1 PORT=8080 npm startUsing curl to test tools (proper MCP protocol sequence):
The MCP protocol requires a specific sequence of requests with proper headers:
a. Initialize the connection (required first step):
curl -v -X POST http://localhost:8080 \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -d '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-06-11", "capabilities": {}, "clientInfo": {"name": "curl", "version": "1.0.0"}}}'b. Extract the session ID from the response headers (look for
mcp-session-id)c. Use the session ID for subsequent requests:
# List available tools curl -X POST http://localhost:8080 \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -H "Mcp-Session-Id: YOUR_SESSION_ID_HERE" \ -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/list", "params": {}}' # Call a specific tool (example) curl -X POST http://localhost:8080 \ -H "Content-Type: application/json" \ -H "Accept: application/json, text/event-stream" \ -H "Mcp-Session-Id: YOUR_SESSION_ID_HERE" \ -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "find_events", "arguments": {"q": "concert", "per_page": 5}}}'For a complete working example, see:
examples/curl-example.sh - Shell script demonstrating the full sequence of requests
examples/node-example.js - Node.js script showing programmatic usage
Using the test scripts:
# Run the simple test server script npm run test-server # Run the comprehensive tool tests (requires server to be running separately) npm run test-tools
The server implements the Model Context Protocol (MCP) specification, so it can be used with any MCP-compatible client.
Using with Claude Desktop
Prerequisites
Installed Claude Desktop
Added claude_desktop_config.json under Settings -> Developer
Setup Instructions
Add to
mcpServerslist:
"seatgeek-mcp": {
"command": "node",
"args": ["/path-to/seatgeek-mcp/dist/server.js"],
"env": {
"SEATGEEK_CLIENT_ID": "your-client-id"
}
}Using with OpenWebUI
You can use this MCP server with OpenWebUI through the mcpo (MCP Over HTTP) proxy, which automatically generates OpenAPI documentation from your MCP tool schemas.
Prerequisites
Docker installed on your system (Optional if using uv)
OpenWebUI installed and running
Setup Instructions
Start the mcpo proxy:
docker run -p 8000:8000 -v $(pwd):/workspace -w /workspace ghcr.io/open-webui/mcpo:main -- npm startor
uvx mcpo --port 8000 -- npm startVerify the proxy is running:
Open your browser and navigate to
http://localhost:8000/docsto see the automatically generated Swagger UI documentationYou can also check the OpenAPI specification at
http://localhost:8000/openapi.json
Connect to OpenWebUI:
Open OpenWebUI
Go to Settings > Tools & Integrations
Add a new OpenAPI-compatible tool
Use the URL:
http://localhost:8000
Example Usage in OpenWebUI
Once connected, you can use these tools in OpenWebUI that will make requests such as:
To search for performers:
{"q": "washington nationals", "per_page": 5}To search for venues:
{"city": "New York", "per_page": 5}
The mcpo proxy automatically handles the conversion between the OpenAPI REST interface and the MCP protocol, making your MCP tools accessible through standard REST endpoints that OpenWebUI can easily integrate with.
Available Tools
4 toolsfind_event_recommendationsB
Get personalized event recommendations based on performers, events, or location. This tool first searches for performers and/or events based on the query (q parameter), then uses the IDs to find similar events. Use location parameters (geoip, lat/lon, postal_code) for nearby events.
| Name | Required | Description | Default |
|---|---|---|---|
| end_utc | No | End date filter in ISO8601 UTC format (YYYY-MM-DD). Use with start_utc to define date ranges. | |
| format | No | Output format. Use "structured" for readable format (default) or "json" for raw API response. Only use "json" if explicitly requested. | structured |
| geoip | No | Use IP geolocation to provide recommendations for events near the user. | |
| lat | No | Latitude coordinate for location-based recommendations. Use with lon and optionally range. | |
| lon | No | Longitude coordinate for location-based recommendations. Use with lat and optionally range. | |
| page | No | Page number for pagination. Default is 1. | |
| per_page | No | Number of results to return per page (1-50). Default is 10. | |
| postal_code | No | Postal code for location-based recommendations. Use with country code for better accuracy. | |
| q | No | Search query to find either an event or performer to base recommendations on. If provided, the system will first look up the event ID or performer ID/slug automatically. | |
| range | No | Search radius for location-based recommendations (e.g., "50mi", "25km"). Use with lat/lon or postal_code. | |
| start_utc | No | Start date filter in ISO8601 UTC format (YYYY-MM-DD). Use for date ranges like "next month" or "this weekend". |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It describes the two-step process (search then recommend) and location-based functionality, but it doesn't cover critical aspects like rate limits, authentication needs, error handling, or what the output looks like (since no output schema exists). For a tool with 11 parameters and no annotations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences that are front-loaded with the core purpose. The first sentence states what the tool does, and the second explains the process and usage of parameters. There's minimal waste, though it could be slightly more structured for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (11 parameters, no annotations, no output schema), the description is incomplete. It doesn't explain the return values or format (critical since no output schema exists), lacks details on behavioral traits like pagination or errors, and doesn't fully guide usage compared to siblings. For a recommendation tool with many parameters, this leaves significant gaps for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds marginal value by explaining the interaction between 'q' and location parameters, but it doesn't provide additional syntax, format details, or examples beyond what the schema provides. With high schema coverage, the baseline is 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get personalized event recommendations based on performers, events, or location.' It specifies the verb ('Get'), resource ('event recommendations'), and basis ('performers, events, or location'). However, it doesn't explicitly differentiate from sibling tools like 'find_performer_recommendations' or 'find_events,' which reduces it from a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides implied usage guidance by mentioning that it 'first searches for performers and/or events based on the query (q parameter), then uses the IDs to find similar events' and suggests using location parameters for nearby events. However, it lacks explicit when-to-use vs. alternatives (e.g., compared to 'find_events' or 'find_performer_recommendations'), and no exclusions or prerequisites are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_eventsA
Search for events by performer, location, date, or venue. This tool is optimized for finding specific events based on user queries. If the query involves a performer, it first looks up the performer, then finds events for that performer. Otherwise, it searches events directly. Returns structured event data with venue information.
| Name | Required | Description | Default |
|---|---|---|---|
| end_utc | No | End date filter in ISO8601 UTC format (YYYY-MM-DD). Use with start_utc to define date ranges. | |
| format | No | Output format. Use "structured" for readable format (default) or "json" for raw API response. Only use "json" if explicitly requested. | structured |
| page | No | Page number for pagination. Default is 1. | |
| per_page | No | Number of results to return per page (1-50). Default is 10. | |
| q | No | Free-text search term. Use only when no other specific filters match the user request. Keep this text to pronouns if present in the user's query unless there are no pronouns in the query. Never duplicate information already captured in other parameters. | |
| start_utc | No | Start date filter in ISO8601 UTC format (YYYY-MM-DD). Use for date ranges like "next month" or "this weekend". | |
| venue_city | No | City name where the venue is located. Use full city name, e.g., "New York" or "Los Angeles". | |
| venue_country | No | Country code where the venue is located, e.g., "US" for United States or "CA" for Canada. | |
| venue_state | No | State abbreviation where the venue is located, e.g., "CA" for California or "NY" for New York. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses the search logic (performer-first approach) and return format (structured event data with venue info), which is valuable. However, it doesn't mention potential limitations like rate limits, authentication needs, error conditions, or pagination behavior beyond what's in the schema, leaving gaps for a tool with 9 parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is efficiently structured in three sentences: first states the search purpose and criteria, second explains the optimization logic, third specifies the return format. Every sentence adds essential information without redundancy, making it appropriately sized and front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, no annotations, no output schema), the description is adequate but incomplete. It covers the core purpose and search logic well, but lacks details on error handling, performance expectations, or example use cases that would help an agent fully understand when and how to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 9 parameters thoroughly. The description adds minimal value beyond the schema by mentioning search criteria (performer, location, date, venue) but doesn't provide additional syntax, format details, or usage nuances for parameters. Baseline 3 is appropriate when the schema does heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches for events using specific criteria (performer, location, date, venue) and returns structured event data with venue information. It distinguishes itself from siblings like find_event_recommendations (which suggests events) and retrieve_event_venue_information (which focuses on venue details), establishing a specific search function.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context on when to use this tool: for searching events based on user queries with specific filters. It explains the optimization logic (performer-first search). However, it doesn't explicitly state when NOT to use it or name alternatives like the sibling tools, missing full differentiation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
find_performer_recommendationsB
Get personalized performer recommendations based on performers, events, or location. This tool first searches for performers and/or events based on the queries, then uses the IDs to find similar performers. Use location parameters (geoip, lat/lon, postal_code) for nearby performers.
| Name | Required | Description | Default |
|---|---|---|---|
| end_utc | No | End date filter in ISO8601 UTC format (YYYY-MM-DD). Use with start_utc to define date ranges. | |
| event_q | No | Search query to find events to base recommendations on. If provided, the system will first look up the event ID automatically. | |
| format | No | Output format. Use "structured" for readable format (default) or "json" for raw API response. Only use "json" if explicitly requested. | structured |
| page | No | Page number for pagination. Default is 1. | |
| per_page | No | Number of results to return per page (1-50). Default is 10. | |
| performer_q | No | Search query to find performers to base recommendations on. If provided, the system will first look up the performer ID automatically. | |
| start_utc | No | Start date filter in ISO8601 UTC format (YYYY-MM-DD). Use for date ranges like "next month" or "this weekend". | |
| venue_city | No | City name where the venue is located. Use full city name, e.g., "New York" or "Los Angeles". | |
| venue_country | No | Country code where the venue is located, e.g., "US" for United States or "CA" for Canada. | |
| venue_state | No | State abbreviation where the venue is located, e.g., "CA" for California or "NY" for New York. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It explains the two-step process (search then find similar) and mentions location-based filtering, which adds some context. However, it doesn't cover important behavioral aspects like whether this is a read-only operation, potential rate limits, authentication requirements, error conditions, or what the output looks like (especially since there's no output schema). For a tool with 10 parameters and no annotations, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two sentences that efficiently convey the core functionality and location usage. The first sentence states the purpose clearly, and the second adds important behavioral context about the two-step process and location parameters. There's no unnecessary repetition or fluff, though it could be slightly more structured for optimal front-loading.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (10 parameters, no annotations, no output schema), the description is incomplete. While it explains the basic process, it doesn't address critical contextual elements: what the output contains (formats, data structure), how pagination works with the 'page' and 'per_page' parameters, error handling, or performance considerations. For a recommendation tool with significant parameter complexity, this leaves too many gaps for effective agent use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the schema already documents all 10 parameters thoroughly. The description adds marginal value by mentioning that location parameters (geoip, lat/lon, postal_code) can be used for nearby performers, though these specific parameters aren't in the schema. It also implies the relationship between 'performer_q'/'event_q' and the recommendation process. This meets the baseline for high schema coverage but doesn't significantly enhance parameter understanding.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get personalized performer recommendations based on performers, events, or location.' It specifies the verb ('Get') and resource ('performer recommendations'), and mentions the three input bases (performers, events, location). However, it doesn't explicitly differentiate from sibling tools like 'find_event_recommendations' or 'find_events', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some implied usage context by explaining the tool's two-step process (search then find similar) and mentioning location parameters for nearby performers. However, it lacks explicit guidance on when to use this tool versus alternatives like 'find_event_recommendations' or 'find_events', and doesn't specify prerequisites or exclusions. This leaves room for ambiguity in tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
retrieve_event_venue_informationB
Get detailed seating information including sections and rows for a specific event. This tool first searches for the event using the provided query, then retrieves detailed venue layout information. Useful for understanding venue seating options and making ticket purchasing decisions.
| Name | Required | Description | Default |
|---|---|---|---|
| event_id | Yes | The unique identifier for the event to retrieve venue information for. This ID is obtained from the event. | |
| format | No | Output format. Use "structured" for readable format (default) or "json" for raw API response. Only use "json" if explicitly requested. | structured |
| page | No | Page number for pagination. Default is 1. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It adds some context: the tool 'first searches for the event using the provided query, then retrieves detailed venue layout information,' which explains the two-step process. However, it lacks details on permissions, rate limits, error handling, or what the output looks like (e.g., pagination details beyond the schema). This is a moderate effort but leaves gaps for a tool with no annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded: the first sentence states the core purpose clearly. The second sentence adds procedural context, and the third provides usage guidance. Each sentence earns its place without redundancy, making it efficient and well-structured. A minor deduction for slightly verbose phrasing in the second sentence.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description provides basic purpose and usage but lacks completeness. It doesn't detail the output format (beyond the 'format' parameter in the schema), error cases, or integration with sibling tools. For a tool with 3 parameters and no structured behavioral hints, more context on what to expect from the response would be helpful, leaving it adequate but with clear gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, meaning the schema already documents all parameters well. The description doesn't add any parameter-specific semantics beyond what's in the schema (e.g., it doesn't explain 'event_id' further or provide examples). With high schema coverage, the baseline is 3, as the description doesn't compensate but also doesn't detract from the schema's documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get detailed seating information including sections and rows for a specific event.' It specifies the verb ('get'), resource ('seating information'), and scope ('for a specific event'), making it easy to understand. However, it doesn't explicitly differentiate from sibling tools like 'find_events' or 'find_event_recommendations', which likely serve different purposes but aren't contrasted here.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some implied usage context: 'Useful for understanding venue seating options and making ticket purchasing decisions.' This suggests when to use the tool, but it doesn't explicitly state when not to use it or mention alternatives like sibling tools. For example, it doesn't clarify if this should be used instead of 'find_events' for seating details, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
The tools have distinct primary purposes: find_event_recommendations and find_performer_recommendations focus on personalized recommendations, find_events is for direct event searches, and retrieve_event_venue_information handles seating details. However, find_event_recommendations and find_events both involve event searches, which could cause some confusion if an agent needs to decide between them for a simple event lookup.
All tool names follow a consistent verb_noun pattern with clear, descriptive terms: find_event_recommendations, find_events, find_performer_recommendations, and retrieve_event_venue_information. The naming is predictable and readable throughout the set.
With 4 tools, the count is reasonable for an event and performer discovery server, covering core functionalities like searching, recommendations, and venue details. It is slightly lean but well-scoped, as each tool serves a distinct role without unnecessary duplication.
The tool set covers key aspects of event discovery, recommendations, and venue information, but there are notable gaps. For example, it lacks tools for ticket purchasing, event creation/updates, or user-specific actions like saving favorites, which might be expected in a full SeatGeek integration. This could limit agent workflows in more complex scenarios.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Booking gateway for AI agents — discover events, movies & hotels, hand off to partner checkout.
Search live events in 60+ countries, plan a night out, and demand artists to tour your city.
Give AI assistants access to real-time data. Search the web, compare flights, find hotels, and more.
Live Las Vegas shows, restaurants, attractions and resorts. Read-only, no API key needed.
Related MCP Servers
- AlicenseBqualityFmaintenanceProvides tools for discovering events at Madison Square Garden via the Ticketmaster API, returning structured data with event details like name, date, price, and ticket purchase links.14,84525MIT
- AlicenseNot gradedqualityDmaintenanceIntegrates with the Eventbrite API to provide AI-assisted event management capabilities for viewing events, tracking attendees, and generating analytics reports.133MIT
- FlicenseBqualityDmaintenanceProvides access to event data from the Eventfinda API, allowing AI agents to search for events by location and retrieve detailed information including descriptions, dates, addresses, and ticket details.122
- AlicenseCqualityDmaintenanceEnables discovery and search of Ticketmaster events, venues, and attractions with advanced filtering options including date ranges, location-based search, and event classifications through the Ticketmaster Partner API.1MIT
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/PeterShin23/seatgeek-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server